2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-05 12:00:16 +00:00
cheat.sheets/sheets/_python/hello
2018-07-12 09:20:11 +09:00

8 lines
297 B
Plaintext

# to install: python is normally already installed
# if not, install it this way:
# (Debian/Ubuntu) apt-get install python
# (Fedora/CentOS) yum install python
# (Mac OS X) brew install python
# to execute: python my_script.py
print "Hello, World!"