Python: - Lack of static typing - Default argument handling (specifically the fact that you can [*change* the default argument](http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced#147877) for future callers!) - Too many required underscores (constructors must be called `__init__`) - Lack of proper private members and functions (convention just says that most things that start with underscore are private, except for all the stuff like `__getattr__` that isn't) - Funny syntax for `print`ing to a file (but they're fixing that in Python 3)