2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00
cheat.sheets/sheets/_python/hello

8 lines
297 B
Plaintext
Raw Normal View History

2017-05-28 21:22:42 +00:00
# to install: python is normally already installed
# if not, install it this way:
# (Debian/Ubuntu) apt-get install python
# (Fedora/CentOS) yum install python
2018-07-12 00:20:11 +00:00
# (Mac OS X) brew install python
2017-05-28 21:22:42 +00:00
# to execute: python my_script.py
print "Hello, World!"