0
Infinite for in python3
is there a way to make an infinite for loop?
3 Respuestas
+ 8
Try this:
for i in iter(int, -1):
pass
+ 1
Why? It’s better to use a while loop such as while true:
- 1
I don’t think it’s possible in python
is there a way to make an infinite for loop?