Learn by doing
Practice
Pick an exercise, write your solution, and press Check — your code is graded right in your browser.
Loading exercises…
Pick an exercise, write your solution, and press Check — your code is graded right in your browser.
Loading exercises…
Every coder's journey starts with one line. Make the computer say hello. Print exactly:
Learning objective
Produce exact output using print to complete “Hello, world!”.
About 5 minutes
Start here: No previous Python exercise is needed.
Related example with different text
message = "Welcome!" print(message)
A string can be stored first and then displayed with print().
Hello, world!
Looking for a saved draft…