摘要: '''读取文件最后一行''' import os # 小文件:批量读取 def get_last_line(filename='mark.csv'): fullfilename = os.path.join(os.path.dirname(__file__), filename) with open(fullfilename, 'r', encoding='utf-8... 阅读全文
posted @ 2016-06-08 02:46 罗兵 阅读(2320) 评论(0) 推荐(0) 编辑