共计 533 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 open()
函数来打开一个文件,并指定打开文件的模式(读取、写入、追加等)。然后可以使用 read()
、write()
、readline()
等方法来进行文件的读取和写入操作。
以下是一个示例代码,展示了如何读取和写入文件:
# 打开一个文件进行读取操作
with open('example.txt', 'r') as file:
data = file.read()
print(data)
# 打开一个文件进行写入操作
with open('output.txt', 'w') as file:
file.write('Hello, World!')
在上面的示例中,首先使用 open('example.txt', 'r')
打开文件 example.txt
进行读取操作,并使用 read()
方法读取文件内容。然后使用 open('output.txt', 'w')
打开文件 output.txt
进行写入操作,并使用 write()
方法写入文本数据。
在使用 open()
函数打开文件时,还可以指定其他参数,如编码方式、换行符等。详细信息可以参考 Python 官方文档。
丸趣 TV 网 – 提供最优质的资源集合!
正文完