Respuesta :

Answer:

green= input("Enter the Green")

if(green == "green"):

   print("You have entered correct option")

else:

   print("You have entered wrong option")

Explanation:

We need to explain the if else ladder through the Python program. And the program for it can be found in the answer section.

Answer:green= input("Enter the Green")

if(green == "green"):

  print("You have entered correct option")

else:

  print("You have entered wrong option")

Explanation:

Hoped this Helped!