pleabargain

learn python 3 the hard way Exercise 13

May 3rd, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. from sys import argv
  2.  
  3. script, first, second, third =argv
  4.  
  5. print ("The script is called:", (script))
  6.  
  7. print ("The script is called:", (first))
  8.  
  9. print ("The script is called:", (second))
  10.  
  11. print ("The script is called:", (third))
Add Comment
Please, Sign In to add comment