#!/usr/bin/python # exact position of python
#!/usr/bin/env python # position of python in enviornment variables
# -*- coding:utf-8 -*- # coding
# Purpose: Parameters,Unpacking,Variables
from sys import argv
script, first, second, third, four = 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
print "Your forth variable is:", four
Python Exercise #13

最新推荐文章于 2020-11-19 15:27:19 发布
