打印命令行参数 2015/11/06 39109 清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>> #打印命令行参数 #!/usr/bin/python import sys import string if len(sys.argv) < 2: print "NO canshu" sys.exit(0) n = 1 for i in sys.argv[1:]: strcanshu = str(i) print 'di',n,'ge canshu shi',strcanshu n = n + 1