我在ipython中有一些列表和数组,我想将其保存到文本文件中,以便我可以在另一个上下文中使用它们。怎么办呢?
答案 0 :(得分:3)
查看%store魔术功能
important = ['item', 42, 'list']
%store important
... time passes, sessions restarted
%store -r
%store
Stored variables and their in-db values:
important -> ['test', 42, 'list']
或者,看看泡菜。