Struktur Python default

# Import section
import #....

# Define global variables

# Define custom functions


# Main function
if __name__ == "__main__":
  # Code that is run when the python script is called.
Anxious Aardvark