我在读取和写入临时文件时遇到问题:import tempfiledef edit(base): tmp = tempfile.NamedTemporaryFile(mode='w+') #fname = tmp.name tmp.write(base) #system('nano %s' % fname) content = tmp.readlines() tmp.close() return contentanswer = "hi"print(edit(answer))输出是[]而不是["hi"] 我不明白它背后的原因,
添加回答
举报
0/150
提交
取消