ipython如何执行多条历史记录
在ipython中,我们可以使用
_ih[32:39]
来显示32到39之间的历史行。如何直接执行这些历史行?
In ipython, we can use
_ih[32:39]
To show history lines between 32 and 39. How can I directly execute these history lines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
您可以使用
%recall
执行之前会话中的代码。请参阅此处%recall文档>。You can execute code from previous sessions with
%recall
. See%recall
documentation here.我使用列表符号:
另外,如果您使用编辑功能来编辑块,则输出列表中将包含您的代码,因此:
我最喜欢的是:
因为我是一个手指粗的懒虫,很少能正确地完成它第一次尝试。
I use the list notation:
also, if you use the edit function to edit a chunk, the Out list will have your code in it, so:
And my favorite:
because I am a fat-fingered slob who can rarely get it right on the first try.
在最新版本的 iPython 上,您使用重新运行 magic-comand:
%rerun 32:39
有关该命令的文档:http://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-rerun
On recent versions of iPython you use the rerun magic-comand:
%rerun 32:39
Documentation on that command: http://ipython.readthedocs.io/en/stable/interactive/magics.html#magic-rerun
尝试%回忆,
检查 recall magic 命令的文档
try %recall,
check doc of recall magic command
使用
exec
语句:http://docs.python.org /reference/simple_stmts.html#exec
Use the
exec
statement:http://docs.python.org/reference/simple_stmts.html#exec
您可以从这些行创建一个命名宏并执行它们:
如果您想多次执行同一组行,这非常有用。此外,这些行不需要是连续的或按顺序的:
You can create a named macro from the lines and execute them:
This is useful if you want to execute the same set of lines more than once. Also the lines do not need to be sequential or in order:
您可以在执行之前编辑行,如下所示:
显然,语法在某些时候从德雷诺德的答案中使用的列表符号发生了变化。
You can edit lines before executing them like so:
Apparently the syntax changed at some point from the list-notation used in dreynold's answer.