标签:接口 close 兴趣 文件操作 模块 编程 io操作 方法 highlight
# 类似文件的缓冲区 from io import StringIO cache_file = StringIO() print(cache_file.write(‘hello world‘)) # 11 print(cache_file.seek(0)) # 0 print(cache_file.read()) # hello world print(cache_file.close()) # 释放缓冲区 如果你依然在编程的世界里迷茫, 不知道自己的未来规划, 对python感兴趣, 这里推荐一下我的学习交流圈QQ群:895 797 751, 里面都是学习python的,
# 类似文件的缓冲区 from io import BytesIO bytes_file = BytesIO() bytes_file.write(b‘hello world‘) bytes_file.seek(0) print(bytes_file.read()) # b‘hello world‘ bytes_file.close() 如果你依然在编程的世界里迷茫, 不知道自己的未来规划, 对python感兴趣, 这里推荐一下我的学习交流圈QQ群:895 797 751, 里面都是学习python的,
标签:接口 close 兴趣 文件操作 模块 编程 io操作 方法 highlight
原文地址:https://www.cnblogs.com/772933011qq/p/11834039.html