''' module wumbo.py ''' ''' this also serves as an example for modules. In this program, we import the call_guess module and see how it works. You can take it one level further by inporting the guess module in the call_guess module ''' import call_guess print("wumbo, firstbline") if __name__ == "__main__": print("wumbo, main") call_guess.sayHi()