wheels = [wheel_1,wheel_2,wheel_3,wheel_4,wheel_5]
for wheel in wheels:
while wheel in wheels.remove(wheel):
Trying to check if the list contains duplicates, so I tried comparing the current value to the list that contains it, minus the value. Even if an item is only in the list once, it still gets caught, which makes me thing the .remove isn't doing what I think it's doing.