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!
Ask the user something and save it with input(). Example: name = input("Enter your name: ").
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}").
Variables store info. Example: num1 = 5. You can use them in math or print: print(f"Num1 is {num1}").
Decide in code: if age >= 18: print("Adult") else: print("Minor"). Do something only when conditions are met.
Experiment with color output in Python or HTML. This is optional fun for style.