#------------------------------------------------------------------------------ # GeneralTemplate.py # This is a template for all programming and lab assignments in this class. # Your programs and modules should contain no global variables unless # explicitely 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, classes etc.. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # if this is a stand alone module, i.e. not a program to be run, then you can # stop here. If this is a program to be run under python, then continue. #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # 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