Python文件读写
时间: 2023-12-25 08:29:12 浏览: 79
Python读写文件
以下是Python文件读写的两种方法示例:
1. 使用read方法读取文件内容:
```python
file = open('itheima.txt', 'r')
content = file.read(12) # 读取文件前12个字符
print(content)
print("-" * 30)
content = file.read() # 继续读取文件剩余内容
print(content)
file.close()
```
2. 使用readline方法逐行读取文件内容:
```python
file = open('itheima.txt', 'r')
content = file.readline() # 读取文件的第一行
print("1:%s" % content)
content = file.readline() # 读取文件的第二行
print("2:%s" % content)
file.close()
```
阅读全文