美文网首页
readlines()

readlines()

作者: AeroZ | 来源:发表于2021-01-31 13:09 被阅读0次

Python File readlines() 方法
https://www.runoob.com/python/file-readlines.html

#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
# 打开文件
fo = open("runoob.txt", "r")
print "文件名为: ", fo.name
 
for line in fo.readlines():                          #依次读取每行  
    line = line.strip()                             #去掉每行头尾空白  
    print "读取的数据为: %s" % (line)
 
# 关闭文件
fo.close()

相关文章

网友评论

      本文标题:readlines()

      本文链接:https://www.haomeiwen.com/subject/oxcrtltx.html