摘要: 1. 读取文本文件 代码: [python] view plain copy f = open('test.txt', 'r') print f.read() f.seek(0) print f.read(14) f.seek(0) print f.readline() print f.readli 阅读全文
posted @ 2016-04-26 18:40 皮挨着地 阅读(2536) 评论(0) 推荐(0)