文章分类 -  python

python sys.argv[](一)
摘要:#!/usr/bin/env python 2 import sys 3 def readfile(filename): 4 f = file(filename) 5 while True: 6 line = f.readline() 7 if len(line... 阅读全文
posted @ 2015-04-20 10:51 carsonce 阅读(44) 评论(0) 推荐(0)