Lesson 1 of 5
Your first program
In Python, you give the computer orders by writing instructions, line by line.
The print() instruction shows text on the screen. The text always goes between quotes.
print("Hi there!")🎯 Your mission
Print the message Hello CodeAge! using print(). Mind the capital letters and the exclamation mark!
main.py
Loading editor…
Loading Python…
Output
Run your code to see the result here.