I read the PEP8 but I did not quite understand it when using 2 blanks.
Should I use 2 spaces to separate a section of imports
from another section?
What sections does a Python file typically have?
Should I have a file with all my classes or a file for each class as in other languages?
import os
import random
import threading
import pygame
from classes import Carta
def main():
pass
main()
Is that correct? Two spaces between the imports
section and the main
function plus 2 between the main
function and the call to it?