1 2 3 4 5 6 7 8 9 10
def shout(word): return (word.upper()) def wisper(word): return (word.lower()) def say(func): print(func("heLLo")) say(shout)