Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions python2/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Python 2

## Instructions
* Python 2 is old... Its scheduled for end of life on January 1st, 2020.
* Find out just how long it has left here: [pythonclock.org](https://pythonclock.org/)
* Check out the [Google Python Style Guide](http://google.github.io/styleguide/pyguide.html)!

### On the web
* Run this program for yourself on [rextester.com](https://rextester.com/LNOUH63431).

### Ubuntu (any version)
1. Bring down this repository (clone or download)
2. Navigate to this repository (ex. `cd ~/gits/Hello-World/python2`)
3. Run `main.py`: `python2 main.py`
3 changes: 3 additions & 0 deletions python2/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#! /usr/bin/env python2

print 'Hello, world, and GO COUGS!'