Template
1
0
Fork
You've already forked hello_world.py
0
Hello World in the Python Programming Language
  • Python 100%
2021年09月13日 23:57:47 +02:00
hello_world.py add hello_world.py 2021年09月12日 23:35:37 +02:00
LICENSE Initial commit 2021年09月12日 00:38:20 +02:00
README.md Update 'README.md' 2021年09月13日 23:57:47 +02:00

"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!