# Assignment [assignment number].[problem number] # EECS 12 Summer Session I # author: [your full name], [your email address] # instructor: Mark E. Phair # due date: [month]/[day]/[year] # # [Description of the program # that should probably take up # multiple lines] # import statements # function/class definitions # "main" code # # if you want to have "main" code that only runs when # the user specifically runs your module, you can # make use of the fact that the module __name__ property # is set to __main__ for the toplevel module... # # if __name__ == '__main__': # print 'this will only run if this is the main module'