python向文件print和write
时间: 2024-05-01 21:23:33 浏览: 65
Python中文件的读取和写入操作
5星 · 资源好评率100%
在 Python 中,我们可以使用 print() 函数或者文件对象的 write() 方法将数据写入文件中。
使用 print() 函数向文件写入数据:
```python
# 打开文件
file = open('file.txt', 'w')
# 使用 print 函数向文件写入数据
print('Hello, World!', file=file)
# 关闭文件
file.close()
```
使用文件对象的 write() 方法向文件写入数据:
```python
# 打开文件
file = open('file.txt', 'w')
# 使用 write 方法向文件写入数据
file.write('Hello, World!')
# 关闭文件
file.close()
```
需要注意的是,在使用 write() 方法时,需要将需要写入的数据转换为字符串类型。如果需要写入多行数据,可以使用文件对象的 writelines() 方法,该方法接受一个包含多个字符串的列表作为参数。
阅读全文