练习13 参数,解包,变量
2017-09-16 本文已影响0人
黑色茄子
from sys import argv
script,first,second,third,fourth=argv
print "The script is called: ",script
print "Your first variable is:",first
print "Your second variable is:",second
print "Your third variable is:",third
fourth = raw_input("Your fourth variable is:")
print fourth