将 ipython variable/s 保存到文本文件
Saving ipython variable/s to a text file
我在 ipython 中有一些列表和数组,我想将它们保存到文本文件中,以便我可以在其他上下文中使用它们。如何做到这一点?
看看 %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']
或者,看看泡菜。
我在 ipython 中有一些列表和数组,我想将它们保存到文本文件中,以便我可以在其他上下文中使用它们。如何做到这一点?
看看 %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']
或者,看看泡菜。