Let's upload the code lines!
Below is a sample post demonstrating how to upload and display code lines in your GitHub blog using Markdown.
Let’s work!
01. Hello World in Python
print("Hello, World!")
This is the most basic Python command. It prints a string to the console.
02. Variables and Data Types in Python
name = "Junhee"
age = 21
is_student = True
print(f"My name is {name}, I am {age} years old.")
In this example:
name
is a stringage
is an integeris_student
is a boolean
We also use f-string formatting to print variables inside a string.
03. Testing my own code
printf("Hello world!");
Previous Aug 15, 2024
« A Full and Comprehensive Style Test
« A Full and Comprehensive Style Test
Jul 22, 2025 Next
Quick Start Guide »
Quick Start Guide »