tuhriel 7 hours ago

One big hurdle, I guess most new pythonistas stumble over, is the one where you add an create an empty default list in a class:

You would think it creates a new empty list, for each object of this class, but it actually creates one which is shared between all of the objects. I had a lot of fun with that one once.