Python 官方文档:入门教程 => 点击学习
python 提供了必要的函数和方法进行默认情况下的文件基本操作 open()函数语法:File_object= open(file_name [, access_mode][, buffering]) file_name:file_n
python 提供了必要的函数和方法进行默认情况下的文件基本操作
open()函数
语法:
File_object= open(file_name [, access_mode][, buffering])
fp = open("test.txt","w")
fp.write("我是最帮的!!")
fp.close()
结果:
读取文件:
fp = open("test.txt","r")
print fp.readline()
fp.close()
结果
如:
with open("text.txt","r") as pf:
for i in pf:
print i
文件操作模式
--结束END--
本文标题: python文件操作一
本文链接: https://lsjlt.com/news/187332.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0