>>8887>python is shitIt depends. Personally I think it lost quite a great deal of shittyness upon version 3 where it finally gained proper lexical closures (by using the nonlocal variable declaration-thingy).
Indent-based structure still sucks though. It makes something trivial, like putting an if around a block of previously written code, into a hassle.
I mean in C I could just go if and then add { } around the code and then have the editor automatically indent that correctly. With python I need to get the indentation of the block correct first…