CODE PATH
PRO ACCOUNT

Master Code
On The Go

Learn. Practice. Build.

Quest 1 β€’ Lesson 1

🐍 Your First Python Program

Python is one of the easiest programming languages to learn. Let's write your very first line of code.

"A program is a set of instructions that tells the computer what to do. We'll start by saying hello!"
hello.py
print("Hello, World!")

🧠 Understanding the Code

✨ Challenge: Say Your Name

Modify the code to print your own name instead of "Hello, World!".

print("Your Name Here")

πŸ“¦ Storing Data: Variables

We can store values in variables and then print them:

name = "Khurram"
print(name)

This will output: Khurram

❀️ Support Free Education

This course is 100% free. If it helps you, consider buying me a coffee.

β˜• Buy Me a Coffee

➑️ Ready for more?

Next lesson: Variables & Data Types – store and work with different kinds of data.

Continue to Lesson 1.2 β†’

(Coming soon – check back or buy Pro Pack for instant access)