''' DS2500 Spring 2025 1/14/25 Sample code from lecture - create objects out of HockeyTeam class ''' # from [modulename] import [classname] from hockeyteam import HockeyTeam def main(): # create HockeyTeam objects fleet = HockeyTeam("Boston", 8, 9) sirens = HockeyTeam("NY", 5, 12) # plot the boston team and NY team! fleet.plot_team() sirens.plot_team() # compare the two teams to each other if fleet.is_better(sirens): print(f"{fleet} is better obviously :)") else: print(f"{sirens} cheated :(") if __name__ == "__main__": main()