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中的文件读写模式有哪些选择?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!