There are so many things in Python that don't really matter that still drive me nuts. For example, this is a valid list in Python:

names = ['Matthew', 'Mark', 'Luke', 'John',]

What's going on with that extra comma? Why does that even compile? If you tried that in C the compiler would yell at you.

Comments