Python:

- Lack of static typing
- Default argument handling (specifically the fact that you can *change* the default argument 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)