Python调用文本文件
时间: 2023-08-14 09:13:16 浏览: 110
Python 中读写文本文件的方法如下:
读文件:
```
with open('文件名', 'r') as file:
content = file.read()
```
写文件:
```
with open('文件名', 'w') as file:
file.write('要写入的内容')
```
随机读写文件需要使用文件指针,代码如下:
读文件:
```
with open('文件名', 'r') as file:
file.seek(offset) # offset 指定文件指针偏移量
content = file.read(size) # size 指定读取的字节数
```
写文件:
```
with open('文件名', 'r+') as file:
file.seek(offset) # offset 指定文件指针偏移量
file.write('要写入的内容')
```
相关问题
python调用什么函数读取文本文件
Python使用内置函数`open()`读取文本文件。例如:
```python
with open('file.txt', 'r') as f:
content = f.read()
```
这里打开了名为`file.txt`的文本文件,并将其内容读入变量`content`中。参数`'r'`表示只读模式。使用`with`语句可以确保在读取完毕后关闭文件。
阅读全文