大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
今天学习IO模块的使用,主要分为StringIO的使用和BytesIO的使用~
洞头网站建设公司创新互联,洞头网站设计制作,有大型网站制作公司丰富经验。已为洞头上千提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的洞头做网站的公司定做!
# 类似文件的缓冲区
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()) # 释放缓冲区
# 类似文件的缓冲区
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()