gpt4 book ai didi

python - 将带有计数器的 while 循环转换为更加 Pythonic 的代码

转载 作者:行者123 更新时间:2023-12-01 04:46:23 26 4
gpt4 key购买 nike

有没有办法将这个Python代码转换成更Pythonic的代码?

i = 0
while condition:
doSomething()
i+=1

最佳答案

我对这种类型使用count

from itertools import count
c = count(0)
while condition:
doSomething()
next(c) # returns 0, +1 in further loops

但是如果您知道需要多少循环,请尝试for循环

for i in range(n):
doSomething()

关于python - 将带有计数器的 while 循环转换为更加 Pythonic 的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29287419/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com