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!

“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 given program will be:

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

This is because the for loop runs three times (from 0 to 2, as specified by range(chorus)), and in each iteration, it prints the string "Let's dance!". Thus, the correct response is:

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