iPython-是否可以对所有y / n提示回答“ y”(或忽略)?
作者:互联网
因此,我有一个具有很多大变量的ipython笔记本,有一次我想摆脱所有已完成的工作.我正在使用%reset_selective变量名清除每个变量,但是有60个这些变量,当我运行具有所有60个提示的块时,它要求我为每个清除输入y / n.
“一旦删除,变量将无法恢复.是否继续(y / [n])?”
有没有一种方法我可以一次为所有人回答“ y”,或者完全跳过提示?
解决方法:
从here读取:
%reset_selective [-f] regex
No action is taken if regex is not included
Options
-f : force reset without asking for confirmation.
似乎您可以将-f标志传递给%reset_selective以使其强制执行而无需询问.
标签:jupyter-notebook,ipython,command-prompt,python 来源: https://codeday.me/bug/20191118/2027294.html