python临时文件读写

我在读取和写入临时文件时遇到问题:


import tempfile


def edit(base):

    tmp = tempfile.NamedTemporaryFile(mode='w+')

    #fname = tmp.name

    tmp.write(base)

    #system('nano %s' % fname)

    content = tmp.readlines()

    tmp.close()

    return content


answer = "hi"

print(edit(answer))

输出是[]而不是["hi"] 我不明白它背后的原因,



幕布斯7119047
浏览 209回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python