2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-01 21:40:24 +00:00

added _python

This commit is contained in:
Igor Chubin 2017-05-28 21:22:42 +00:00
parent 5ae952ebdd
commit bc644157e4

6
sheets/_python/hello Normal file
View File

@ -0,0 +1,6 @@
# to install: python is normally already installed
# if not, install it this way:
# (Debian/Ubuntu) apt-get install python
# (Fedora/CentOS) yum install python
# to execute: python my_script.py
print "Hello, World!"