python对txt的读写

Posted 海纳柏川

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python对txt的读写相关的知识,希望对你有一定的参考价值。

python对txt的读写

filename ="D://练习//learning_python.txt"
#读取整个文件
with open (filename) as file_obj:
    contents = file_obj.read()
    print(contents)
#逐行读取
with open (filename) as file_obj:
    lines = file_obj.readlines()
    print(lines)
    b=lines
#把读出来的添加到列表
a =[]
for b in lines:
    print(b)
    a.append(b)
print(a)

#写文件
with open (filename,"w") as obj:
    obj.write("china wan sui!")
    obj.write("china people wan sui!")
    obj.write("china dang wan sui!")
#写完了读整个文件
with open (filename)as obj:    
    i = obj.read()
    for a in i:
        print(a)

 

以上是关于python对txt的读写的主要内容,如果未能解决你的问题,请参考以下文章

Python代码中打开txt文件(非读写)

Python对 txt 文件进行读写清除和删除操作

Python文件读写

python txt文件常用读写操作

用Python对文件进行随机读写

用Python对文件进行随机读写