Python 中的条件迭代器:如何挑选特定的迭代?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下
枚举
。Take a look at
enumerate
.