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

python 写入文件 博客分类: python python学习python写入文件写文件python写文件 

程序员文章站 2024-02-24 20:12:10
...

使用python 如何把数据写入文件呢?或者说如何把数据持久化呢?

方式一:使用file

 

#!/usr/bin/python

poem='abc\n'
f=file('poem.txt','w')
f.write(poem)
f.close()

 注意:file()的第二个参数,“w”表示以“写”的方式打开文件

 

 

方式二:使用open

 

>>> a=['a\n','111\n','yyy\n']
>>> a
['a\n', '111\n', 'yyy\n']
>>> f=open('c.txt','w')
>>> f.writelines(a)
>>> f.close

注意:open()的第二个参数,“w”表示以“写”的方式打开文件

 

方式三:(仅适用于python3

>>> man_file=open('man_data.txt','w')
>>> print(['abc','\n'],file=man_file)
>>> man_file.close()
>>>
root@ function_study# ls
man_data.txt  nest.py
root@ function_study# cat man_data.txt
['abc', '\n']