The first program that we usually write when learning a new programming language is Hello, world!
. It’s probably the most famous program in the world! It displays the words Hello, world!
onto the screen. The Python code for this program looks like this:
print("Hello, world!")
In the editor below, edit and fix the code so that the program displays Hello, world!
in the console.
Need some help? Click here to reveal a video walkthrough for this task!
Hello, world!
onto the screen.Below is an example of how the program should run:
Hello, world!