位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

文件处理——python经典实例

提问人:杨紫红发布时间:2020-11-26
对比Java,python的文本处理再次让人感动
#! /usr/bin/python

spath="D:/download/baa.txt"
f=open(spath,"w") # Opens file for writing.Creates this file doesn't exist.
f.write("First line 1.\n")
f.writelines("First line 2.")

f.close()

f=open(spath,"r") # Opens file for reading

for line in f:
    print("每一行的数据是:%s"%line)

f.close()

知识点:
·open的参数:r表示读,w写数据,在写之前先清空文件内容,a打开并附加内容. 
·打开文件之后记得关闭

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部