Created
February 27, 2014 20:27
-
-
Save blammothyst/9258840 to your computer and use it in GitHub Desktop.
Code from Learn Python the Hard Way(.org) ex 13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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