This is a simple "Hello World" program written in Python. It serves as a basic example to test if Python is installed correctly and to illustrate the basic syntax of the language.
To run this program, you need to have Python installed on your system. You can download and install Python from the official Python website: https://www.python.org/downloads/
- Create a New File: Open a text editor or IDE and create a new file named
hello.py
. - Write the Code: Copy and paste the following code into the file:
print("Hello, World!")