Your first program
Python was named after Monty Python, not the snake. The snake mascot came later and has been politely pretending it was always the plan.
The print() function writes text to the output. Text in quotes is a string.
print("Hello, Python")Quirk #1: Python uses indentation (usually 4 spaces) to mark code blocks. Forget a colon or indent and Python will lecture you like a disappointed linter.
Press Run. When the output contains Hello, Python, mark complete.
Output
Press Run to execute your code.