import os
from tempfile import TemporaryFile

f = TemporaryFile('w+t', encoding='utf-8')
# 创建临时文件

f.write('数据1')
f.write('数据2')
# 写数据

f.seek(0)
print(f.read())
# 读取输出

f.close()
# 关闭并删除

微信截图_20210703231528.png

import tempfile

temp_path = tempfile.mkdtemp()
# 获取临时目录

print(temp_path)

微信截图_20210703231816.png

标签: none

添加新评论