Hi.
I am interested in knowing what is the Python convention for new lines between the program? For example, consider this:
import os
def func1():
def func2():
What should be the ideal new line separation between:
- the
import
modules and the functions? - the functions themselves?
I have read PEP8, but I wanted to confirm the above two points.