


PREDICT · READ BEFORE YOU WRITE
What does this code print?
Read the program like the computer would, then call the output before you run anything.
def add_star(sky):
return sky + " star"
def shine(light):
return light.upper() + "!"
result = shine(add_star("bright"))
print(result)