1
I read the PEP8 but did not understand very well when using 2 blank spaces.
I must use 2 spaces to separate a section of imports
from another section?
What sections a Python file normally displays?
I must 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
and the function main
and 2 more between the function main
and the call to her?