摘要: import fileinputimport osos.chdir(r'd:\\')f = open('test.txt','r')f2=open('test2.txt','a')for line in f: line=line[1:] #去掉每行的第一个字符 f2.writelines(line)... 阅读全文
posted @ 2013-06-24 15:03 前行者2011 阅读(308) 评论(0) 推荐(0) 编辑
摘要: class ShortInputException(Exception): '''A user-defined exception class''' def __init__(self,length,atleast): Exception.__init__(self) self.length=len... 阅读全文
posted @ 2013-06-24 10:48 前行者2011 阅读(152) 评论(0) 推荐(0) 编辑