Tagged Questions
3
votes
3answers
176 views
Is there any case in python when using a while loop would be best practice?
I'm doing some python benchmarking, and I've discovered that repeat(None) is much faster than while True or while 1:
>>> def bench7():
... foo = 0
... a = time()
... for i in ...