IPython 提示号有什么用?

发布于 2025-01-06 06:21:57 字数 90 浏览 0 评论 0原文

我正在使用 IPython Web 笔记本,每个块之前都有一个提示数字,例如“In [68]:”。这个提示号码的用途是什么?你能用它做任何事吗?您可以/应该重置它吗?

I'm using IPython web notebook and there's a prompt number before each block such as "In [68]:". What's the purpose of this prompt number? Can you do anything with it? Can/should you ever reset it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

疧_╮線 2025-01-13 06:21:57

IPython 缓存输入和输出,因此您可以引用和重用每个单元格的输入或输出。提示编号对应于访问这些对象的索引。

因此,您可以执行以下操作:

a = Out[5]

重用单元格的输出。

请参阅相关文档细节。

如果/当您重新启动内核时,提示计数将被重置,因为这些缓存将不再存在。

IPython caches inputs and outputs, so you can reference and reuse the input or output of each cell. The prompt numbers correspond to the indices for accessing these objects.

So you can do things like:

a = Out[5]

to reuse the output of a cell.

See the relevant docs for details.

The prompt count will be reset if/when you restart the kernel, because these caches will no longer exist.

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