(May 29, 2014 at 10:54 am)Marsellus Wallace Wrote: you call it Indentation , I call it good code writing style
IMO : The whitespace thing in python is not very practical . Who has time to put all the dammin' spaces and what if you forgot where you are ?
If you forget where you are, you use a proper editor, one that displays a symbol in the place of whitespace and auto-indents when you press ENTER.
On windows, I use notepad++.
On linux, I'm using Geany.
Both support these features and it makes everything very easy to understand
(even the big problem in python where you can have a tabulation in one line and 4 spaces in the next, which, if all white, look exactly the same, but represent different indentations, which leaves python confused) and no such memory lapses occur... often

Indentation really makes it easier to read code. And you just know that you won't remember what you wrote in one or two weeks from now, so it's best to keep it readable... for your future peace of mind.
ALSO: comments, lots of them!