Python输出内容到
时间: 2023-06-11 15:06:59 浏览: 66
Python ORACLE查询内容输出到WORD表格
5星 · 资源好评率100%
文件有几种方法,其中比较常用的有以下几种:
1. 使用文件对象的`write()`方法将内容写入文件中:
```python
with open('file.txt', 'w') as f:
f.write('Hello, world!')
```
2. 使用`print()`函数将内容输出到文件中:
```python
with open('file.txt', 'w') as f:
print('Hello, world!', file=f)
```
3. 使用`sys.stdout`重定向输出流到文件中:
```python
import sys
with open('file.txt', 'w') as f:
sys.stdout = f
print('Hello, world!')
sys.stdout = sys.__stdout__ # 恢复原来的输出流
```
其中,第一种方法是最简单、最常用的方法,适用于需要将少量内容写入文件的情况。第二种方法可以将多个内容输出到同一个文件中,适用于需要输出多个内容的情况。第三种方法可以将所有的输出流都重定向到文件中,适用于需要将程序所有输出都保存到文件中的情况。
阅读全文