A simple Python Hello World demonstration project.
- Python 3.6 or higher
- Git (optional, for cloning)
-
Clone or download the project:
git clone <repository-url> cd demo2
Or download the files directly to your local machine.
-
Verify Python installation:
python3 --version
Make sure you have Python 3.6 or higher installed.
-
Make the script executable (Linux/macOS):
chmod +x hello_world.py
The project contains a simple Python script and this documentation.
Run the Hello World script:
python3 hello_world.pyOr if you made it executable:
./hello_world.pyWhen you run the script, you should see the following output:
Hello, World!
Welcome to Python programming!
Screenshot showing the actual program execution and output


