Root.Formatting.Spacing |
Parent | Index |
Sibling aspects | Length | Quotation |
All whitespace found between non-whitespace characters.
# Here is an example of code with spacing issues including
# unnecessary blank lines and missing space around operators.
def func( ):
return 37*-+2
Useless spacing affects the readability and maintainability of a code.
Removing the trailing spaces and the meaningless blank lines.