Skip to content

Instantly share code, notes, and snippets.

@blammothyst
Created February 27, 2014 20:27
Show Gist options
  • Save blammothyst/9258840 to your computer and use it in GitHub Desktop.
Save blammothyst/9258840 to your computer and use it in GitHub Desktop.
Code from Learn Python the Hard Way(.org) ex 13
from sys import argv
script, first, second, third = argv
print "What's this app's name?", script
print "What's your name human?", first
print "How tall you at?", second
print "What it weigh? (the it is you)", third
print "wait what is your name? ",
name = raw_input ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment