Python文件读写的方法有以下几种:
1. 使用open()函数打开文件,并通过read()方法读取文件内容。
```python
file = open('filename.txt', 'r')
content = file.read()
file.close()
```
2. 使用open()函数打开文件,并通过readlines()方法按行读取文件内容。
```python
file = open('filename.txt', 'r')
lines = file.readlines()
file.close()
```
3. 使用with语句打开文件,并自动关闭文件。
```python
with open('filename.txt', 'r') as file:
content = file.read()
```
4. 使用write()方法将内容写入文件。
```python
file = open('filename.txt', 'w')
file.write('Hello, World!')
file.close()
```
5. 使用writelines()方法将多行内容写入文件。
```python
lines = ['Line 1', 'Line 2', 'Line 3']
file = open('filename.txt', 'w')
file.writelines(lines)
file.close()
```
6. 使用with语句打开文件,并使用write()方法将内容写入文件。
```python
with open('filename.txt', 'w') as file:
file.write('Hello, World!')
```