Created
September 12, 2011 11:36
-
-
Save adaptives/1211070 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 14
This file contains hidden or 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
| #LPTHW Exercise 14 | |
| from sys import argv | |
| script, user_name = argv | |
| prompt = '> ' | |
| print "Hi %s, I'm the %s script." % (user_name, script) | |
| print "I'd like to ask you a few questions." | |
| print "Do you like me %s?" % user_name | |
| likes = raw_input(prompt) | |
| print "Where do you live %s?" % user_name | |
| lives = raw_input(prompt) | |
| print "What kind of computer do you have?" | |
| computer = raw_input(prompt) | |
| print """ | |
| Alright, so you said %r about liking me. | |
| You live in %r. Not sure where that is. | |
| And you have a %r computer. Nice. | |
| """ % (likes, lives, computer) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment