Skip to content
dreamcode
dreamcode
Back to lesson
Practice · Parameters-arguments
PredictArrangeFill in
+20 XP on finish
PREDICT · READ BEFORE YOU WRITE

What is the output of this Python code?

Read the program like the computer would, then call the output before you run anything.

def describe_cloud(color, height):
    return color + " cloud at " + str(height) + " feet"

result = describe_cloud("silver", 5000)
print(result)