首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

python 读资料

2012-10-14 
python 读文件http://www.cnblogs.com/xuxn/archive/2011/07/27/read-a-file-with-python.html# File: rea

python 读文件
http://www.cnblogs.com/xuxn/archive/2011/07/27/read-a-file-with-python.html



# File: readline-example-3.py

file = open("sample.txt")

while 1:
    lines = file.readlines(100000)
    if not lines:
        break
    for line in lines:
        pass # do something

热点排行