

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
def shout(word):
return word.upper()
shout("quiet")
print(shout("loud"))

Trace the program the way the computer would, then make your call before running anything.
def shout(word):
return word.upper()
shout("quiet")
print(shout("loud"))