Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hello-world in python2... lol #86

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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!'