Tagged Questions
3
votes
3answers
162 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 ...
3
votes
3answers
455 views
concurrently iterating through even and odd items of list
I have a list of items (which are HTML table rows, extracted with Beautiful Soup) and I need to iterate over the list and get even and odd elements (I mean index) for each loop run.
My code looks ...