monkeys paw wrote: > NEW QUESTION if y'all are still reading: > > Is there an integer increment operation in Python? I tried > using i++ but had to revert to 'i = i + 1' Nope, but try i += 1. ~Ethan~