Print Hello, World!
The classic first program — proves your Python setup works.
- 1Open a new file called hello.py.
- 2Call the built-in print() function with the text you want to show.
- 3Run the file with `python hello.py`.
print("Hello, World!")Hello, World!