💡
Completely New Disclaimer Extras

Lessons

Lesson 1: Text & Print

Printing text is the first step. Use print("hello world"). Quotes ("") tell Python it's text, parentheses () wrap the text to be printed. Always match opening and closing quotes!

Lesson 2: Input

Ask the user something and save it with input(). Example: name = input("Enter your name: ").

Lesson 3: Numbers & Math

Use int() or float() to turn inputs into numbers. Example: age = int(input("Enter age: ")). Combine with print: print(f"Next year you'll be {age + 1}").

Lesson 4: Variables

Variables store info. Example: num1 = 5. You can use them in math or print: print(f"Num1 is {num1}").

Lesson 5: Conditions (if/else)

Decide in code: if age >= 18: print("Adult") else: print("Minor"). Do something only when conditions are met.

Lesson 6: Colors (Optional)

Experiment with color output in Python or HTML. This is optional fun for style.