Your First Program ๐
Every programmer starts with the same famous first program: making the computer say Hello, world!
In Python, you use print() to make the computer show a message.
Whatever you put between the quotes gets printed on the screen:
print("I love pizza")
Your mission
Make your program print exactly:
Hello, world!
Then press โถ Run and watch the console!
Your code
Press โถ Run to see what your code does!