美文网首页
tempfile模块

tempfile模块

作者: 一盏省油的小灯 | 来源:发表于2018-06-11 14:59 被阅读5次
模块函数说明:
tempfile模块.png
f = tempfile.NamedTemporaryFile(suffix='.mp3', delete=False)#创建后缀为.mp3d
f.write(text)    #往文件中写入数据
return f.name  #返回文件的绝对路径

相关文章

网友评论

      本文标题:tempfile模块

      本文链接:https://www.haomeiwen.com/subject/gbkheftx.html