#------------------------------------------------------------------------------ # GeneralTemplate.py # This is a template for all future programming assignments in this class # (starting with pa3). Your programs should not contain global variables # unless specifically called for in the project description. Every file # submitted should begin with a comment block as below. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # your name # your cruzid # CSE 30-02 Spring 2021 # pax or lax (where x is the number of the program or lab) # # name of this file # a very short description of what the file contains #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # import statements #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # definitions of optional helper functions #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # definitions of required functions (and other structures, if any) #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # definition of function main() #------------------------------------------------------------------------------ def main(): # do whatever it is the program is supposed to do # end #------------------------------------------------------------------------------ # closing conditional that calls main() #------------------------------------------------------------------------------ if __name__=='__main__': main() # end