Lesson 1 of 5
print() and your first script
Python runs a script line by line, top to bottom.
print() writes to standard output. Strings are delimited by single or double quotes.
print("Hello, world")🎯 Exercise
Print the string Hello, CodeAge to standard output.
main.py
Loading editor…
Loading Python…
Output
Run your code to see the result here.