Skip to content
dreamcode
dreamcode
Back to lesson
Practice · Compose-functions
PredictArrangeFill in
+20 XP on finish
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)