Python创建临时文件与临时目录
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()
# 关闭并删除
import tempfile
temp_path = tempfile.mkdtemp()
# 获取临时目录
print(temp_path)