Skip to content

Commit

Permalink
extra credit - raw input
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarkentin committed Jan 9, 2011
1 parent 2a5019c commit 2773bcd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ex13-raw_input.py
@@ -0,0 +1,7 @@
from sys import argv

script, first_name, last_name = argv

middle_name = raw_input("What is your middle name? ")

print "Your full name is %s %s %s." % (first_name, middle_name, last_name)

0 comments on commit 2773bcd

Please sign in to comment.