Hello World in the Python Programming Language
| hello_world.py | add hello_world.py | |
| LICENSE | Initial commit | |
| README.md | Update 'README.md' | |
"Hello, World!" in Python
Code
File: hello_world.py
Content:
#!/usr/bin/env python
"""
Example Application, which prints: "Hello, World!"
"""
print(f"Hello, World!")
Usage
python hello_world.py
Output
Hello, World!