欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python的文件操作 博客分类: 机器学习  

程序员文章站 2024-03-22 10:42:04
...
python读取文件
###读取一行
filehand = open('C:\工作\字段整理.txt')
line = filehand.readline()
while line:
    print(line)
    print("=============")
    line = filehand.readline()
##读取全部
files = open('C:\工作\重要信息.txt')
content =files.read()
print(content)


#一行一行遍历
files = open('C:\工作\重要信息.txt')
lineall = files.readlines()
for lines in lineall:
    print(lines)


#写入文件到文件中
myfiles =open('C:\工作\重要信息.txt','a+')
myfiles.write('\r\n')
myfiles.write('thank you')