In this lesson, you’ll learn how to improve the readability of your scripts using blank lines and line breaking. You’ll see the preferred way to add blank lines to classes and functions and how this helps break up code into logical sections.
PEP 8 suggests that lines should be limited to 79 characters but it is not always possible to keep statements below that. You’ll see how to handle this 79 character limit and the recommended ways of breaking up statements over multiple lines.