[SNIP]Reminder about how for-loops work:This:for x in seq: <body>translates (roughly) to this:_it = iter(seq)while True: try: x = next(_it) except StopIteration: break <body>