Python 逐行读取文件内容示例

前端之家收集整理的这篇文章主要介绍了Python 逐行读取文件内容示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣Python 逐行读取文件内容示例的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。<br>
 #  编程之家  (jb51.cc) 
#Python逐行读取文件内容
thefile= open("foo.txt")             
line = thefile.readline()            
while line:
    print line,  line = thefile.readline()
thefile.close()


#Windows下文件路径的写法:
#E:/codes/tions.txt


#写文件:
thefile= open("foo.txt","rw+")
for item in thelist:
  thefile.write("%s\n"% item)
thefile.close()


# End 512.笔记 jb51.cc
  原文链接:https://www.f2er.com/python/526800.html

猜你在找的Python相关文章