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