如何将Jupyter单元格的结果导出到.py文件

时间:2017-10-01 18:41:42

标签: python jupyter

如何在Jupyter单元格中保存print(Python 2)的结果(单元格只包含:

sum([object.size for object in boto3.resource('s3').Bucket('mybucket').objects.all()])

..到.py文件?

1 个答案:

答案 0 :(得分:2)

修改

到pyfile?字典通常以json格式保存。

使用json库:

import json

with open("output.json", "w") as f:
    json.dump(project,f) #