1
出力をファイルに送信した後、出力セルにJupiterノートブックの出力を戻す方法を教えてください。Jupyterノートブックの出力を出力セルに戻す方法は?
ファイルに出力を送信:
バック出力セルにその出力を送信sys.stdout = open(filename, 'w')
print "stuff"
:
sys.stdout = ?
print "hopefully this is in an output cell now"