标签: python file
我想将给定单元格的输出保存在Jupyter中的文件中。该单元格由for循环组成,每次迭代都会产生一个输出。
for
到目前为止,我已经尝试过:
%%capture cap --no-stderr
在循环之前,然后:
with open(mylist[index]+'.txt', 'w') as f: f.write(cap.stdout)
在循环的最后(循环的最后一条指令)。但是,出现错误:
名称'cap'未定义
我对如何进行操作感到困惑...
谢谢