def name(): commands
name
defname(): # First, we describe the procedure. This must be done before the main program commands name() # At this point, specifying the name of the procedure, the commands described in the procedure above will be executed. down down name() # commands from the procedure will be executed here again.