What is the output of this program?

chorus = 3

for i in range(chorus):

print("Let's dance!")

(1 point)
Responses

Let’s dance!

Let’s dance!

Let’s dance!

Let’s dance! Let’s dance!

“Let’s dance!” “Let’s dance!”

“Let’s dance!”

1 answer

The output of the program will be:

Let's dance!
Let's dance!
Let's dance!

This is because the for loop runs 3 times (as chorus = 3), and during each iteration, it prints "Let's dance!". Thus the correct response is:

Let’s dance! Let’s dance! Let’s dance!