NamesTopCommentingBlank Lines

Blank Lines

Blank lines are used to delineate different areas of the code. The variable and def declarations at the top of your program should be separated from the header of the class and the header of the first method. There should always be space between methods. It is advisable to break up long method bodies and long declarations into logical pieces. Always leave a blank line before a comment line.


NamesTopCommentingBlank Lines