Possible Duplicate:
Easy way to either fix up code formatting or educate noobs
Could the Help be better? (code section)
As a frequent reader, answerer, and editor of Python questions, I find that by far, the most common error new users make is to "format" their code by simply indenting top-level lines (function definitions, class definitions, etc.) by four spaces. In c or java code, (for example) this is not a very big problem, because the beginnings and endings of code blocks are explicitly marked with { and }. If I want to fix the indentation, I can reconstruct the correct indentation by paying attention to braces.
But in Python, this can lead to code that is not only incomprehensible, but also unfixable by editors, because it is impossible to tell where a code block is supposed to end. Most of the time, it's possible to guess at the correct block structure, but even so, it's just a guess; and there's always the risk that in guessing, the editor might inadvertently fix the very problem the OP was asking about.
Would it be possible to send a special message to users with under 50 rep asking Python-tagged questions? Something like "Are you certain your code is indented correctly? Highlight your code and press Ctrl-K or the code formatting button ({}) above for correct formatting."
This might be too domain-specific to be a high priority. But it drives me nuts trying to comprehend malformed Python code all the time. (And it seems these users must not be getting the message described in this answer, or they wouldn't be making this mistake.)
After seeing some reactions to this proposal, I believe I may not have fully explained what I think is happening. My hypothesis about why this mistake happens is as follows:
- User pastes PEP-8 compliant code, using indentation of 4 spaces. User then looks at code preview and sees that indented code is formatted correctly, while unindented code is not.
- User correctly surmises that the way to format a code block is to indent it by four spaces.
- User does not look for any additional information, and so does not learn that there is an easy way to indent the code.
- User lazily decides to indent only top-level lines, befouling Python blocks, and escaping any warning message about unformatted code -- because the code is formatted.
I did a lot of looking around; this question is not a duplicate of this question, because it isn't really about code formatting, but is rather about code indentation. I'm seeking to fix a related, but subtly different problem. This code is correctly formatted by users who are concerned about formatting, but are lazy and think they've got it all figured out already. The result is not poorly formatted code, but poorly indented code. My somewhat irritable tone above notwithstanding, I deeply identify with these people, and want to help them.
It might be that there are other ways to help this problem. Perhaps the "How to Format" box should explicitly mention the ctrl-k shortcut; it doesn't right now, at least based on what I see to the right of this box as I type.
defetc.). – TinSoldiersAndNixonsComin' Mar 27 '12 at 22:47