Python 中的条件迭代器:如何挑选特定的迭代?

发布于 2024-10-12 02:44:09 字数 133 浏览 9 评论 0原文

在 django 模板中,我使用 {% if forloop.first %} 来完成此操作,但我不确定如何在常规的 ole python 中执行此操作,而无需编写一个笨重的计数器来对我的条件迭代进行计数。他们的出路很简单吗?

In django templates I accomplish this with {% if forloop.first %} but im not sure how to do this in regular 'ole python without writing a clunky counter to count up as my conditional iterates. Is their an easy way out?

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

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

发布评论

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

评论(1

‘画卷フ 2024-10-19 02:44:09

看一下枚举

返回一个枚举对象。序列必须是序列、迭代器或其他支持迭代的对象。 enumerate() 返回的迭代器的 next() 方法返回一个元组,其中包含一个计数(从 start 开始,默认为 0)以及通过迭代 iterable 获得的相应值。 enumerate() 对于获取索引系列很有用...

>>> for i, season in enumerate(['Spring', 'Summer', 'Fall', 'Winter']):
...     print i, season
0 Spring
1 Summer
2 Fall
3 Winter

Take a look at enumerate.

Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the corresponding value obtained from iterating over iterable. enumerate() is useful for obtaining an indexed series ...

>>> for i, season in enumerate(['Spring', 'Summer', 'Fall', 'Winter']):
...     print i, season
0 Spring
1 Summer
2 Fall
3 Winter
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文