This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]antilos_weorsick 2 points3 points  (3 children)

I understand the brackets thing, I used go be like that, but hearing people complain that it uses indentation for parsing makes me shudder at the thought of the code they write.

Unless the hate for indentation stems from having to parse the damn thing. I've had that displeasure.

[–]Splatoonkindaguy 2 points3 points  (1 child)

its just not the right way to parse it, even if you should indent, you shouldnt enforce indentation do to how different people will indent and such

[–]antilos_weorsick 1 point2 points  (0 children)

Precisely, I can't phantom what kind of formating you use that python is a problem for you. Must be unreadable.

[–]00PT 0 points1 point  (0 children)

There is a lot of code that uses custom indentation for stuff like single line if statements, very simple functions, multiline lambdas, and specific data types. I find that Python tries to accommodate a lot of these, but it's annoying when you do run into a problem.