ipython如何执行多条历史记录

发布于 2024-12-07 13:45:34 字数 97 浏览 1 评论 0原文

在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

姐不稀罕 2024-12-14 13:45:34

您可以使用 %recall 执行之前会话中的代码。请参阅此处%recall文档>。

#Execute all code from previous session.
%recall ~1/

#Execute all code from two sessions previous the current session.
%recall ~2/

#Execute lines 1 to 5 from previous session.
%recall ~1/1-5

You can execute code from previous sessions with %recall. See %recall documentation here.

#Execute all code from previous session.
%recall ~1/

#Execute all code from two sessions previous the current session.
%recall ~2/

#Execute lines 1 to 5 from previous session.
%recall ~1/1-5
复古式 2024-12-14 13:45:34

我使用列表符号:

exec In[34:36]

另外,如果您使用编辑功能来编辑块,则输出列表中将包含您的代码,因此:

exec Out[35]

我最喜欢的是:

edit In[34:38]

因为我是一个手指粗的懒虫,很少能正确地完成它第一次尝试。

I use the list notation:

exec In[34:36]

also, if you use the edit function to edit a chunk, the Out list will have your code in it, so:

exec Out[35]

And my favorite:

edit In[34:38]

because I am a fat-fingered slob who can rarely get it right on the first try.

烟酉 2024-12-14 13:45:34

在最新版本的 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

○闲身 2024-12-14 13:45:34

您可以从这些行创建一个命名宏并执行它们:

%macro foo 32-38
foo

如果您想多次执行同一组行,这非常有用。此外,这些行不需要是连续的或按顺序的:

%macro bar 38 37 32-36 42

You can create a named macro from the lines and execute them:

%macro foo 32-38
foo

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:

%macro bar 38 37 32-36 42
那一片橙海, 2024-12-14 13:45:34

您可以在执行之前编辑行,如下所示:

edit 1-5

显然,语法在某些时候从德雷诺德的答案中使用的列表符号发生了变化。

You can edit lines before executing them like so:

edit 1-5

Apparently the syntax changed at some point from the list-notation used in dreynold's answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文