You compared each letter in the correct word to the letter guessed. Assume the correct word is "cloud." Finish the code to compare the guessed letter to the "u" in "cloud."
if guess == correct[4]
if guess == correct{4}
if guess == correct[3]
if guess == correct{3}

Respuesta :

Answer:

if guess == correct[3]:

Explanation:

Its was correct

You compared each letter in the correct word to the letter guessed the correct word is "cloud." Finish the code to compare the guessed letter to the "u" in "cloud." is option c. it is if guess == correct[3].

What is code ?

Coding method is the use of the programming language to get the laptop to act as desired. Each line of the code is a hard and fast of commands for the laptop.

The correct word is "cloud." Finish the code to compare the guessed letter to the "u" in "cloud" is if guess == correct.

Read more about the code:

https://brainly.com/question/19344465

#SPJ2