1、open()函数可以接受2个参数,第一个为文件名,第二个为对文件的操作:
w:写入
r:只读
a:附加模式
r+:可读可写
2、将一段文字写入文件:
file_name = "write.txt"
text = "i like python"
with open(file_name,"w") as file_object:
file_object.write(text)
write()函数不会在末尾加换行符。
1、open()函数可以接受2个参数,第一个为文件名,第二个为对文件的操作:
w:写入
r:只读
a:附加模式
r+:可读可写
2、将一段文字写入文件:
file_name = "write.txt"
text = "i like python"
with open(file_name,"w") as file_object:
file_object.write(text)
write()函数不会在末尾加换行符。