Python是一种功能强大的编程语言,提供了多种文件读写模式以满足不同的需求。本文将介绍Python中常用的文件读写模式,并给出相应的代码示例。
示例代码:
# 打开文件 file = open('example.txt', 'r') # 读取文件内容 content = file.read() # 关闭文件 file.close() # 打印文件内容 print(content)
示例代码:
# 打开文件 file = open('example.txt', 'w') # 写入内容 file.write('Hello, World!') # 关闭文件 file.close()
示例代码:
# 打开文件 file = open('example.txt', 'a') # 追加内容 file.write('Hello, World!') # 关闭文件 file.close()
示例代码:
# 打开文件 file = open('example.txt', 'r+') # 读取文件内容 content = file.read() print(content) # 在文件开头写入新内容 file.seek(0) file.write('Hello, Python!') # 关闭文件 file.close()
示例代码:
# 打开二进制文件 file = open('example.jpg', 'rb') # 读取文件内容 content = file.read() # 关闭文件 file.close()
以上就是Python中常用的文件读写模式。根据具体需求选择合适的模式,可以有效地对文件进行操作。
以上是Python中的文件读写模式有哪些选择?的详细内容。更多信息请关注PHP中文网其他相关文章!