# Prof Deena Engel / V22.0002 # A play on "Green Eggs and Ham" ... by Dr. Seuss # the main function def main(): print("Would you like them with a mouse?") print("Would you like them in a house?") print_verse(); print("Would you eat them in a box?") print("Would you eat them with a fox?") print_verse(); print("Would you like them in a car?") print("Eat them, eat them, here they are!") print_verse(); # the repeated stanza function def print_verse(): print("I do not like them here or there.") print("I do not like them anywhere...") print("I do not like green eggs and ham!") print("I do not like them, Sam-I-am!\n") # call the main function main()