hello world in python

main.py
print("Hello, World!")
23 chars
2 lines

This is the simplest program in Python. The print() function displays the message inside the quotes "Hello, World!" on the screen. The quotes indicate that "Hello, World!" is a string, which is a type of data in Python that represents text. When you run this program, you should see the message Hello, World! printed on the screen.

gistlibby LogSnag