BadPython.com

Mutable iteration

        
my_squares = []
for i in input_list:
    my_squares.append(i * i)