jovanny0321 jovanny0321 05-11-2022 Computers and Technology contestada What is the otput of this program if the user input is 'ant'? animal=input("Which animal? ") animals = ["ant", "bear", "seal"] if animal in animals: print("bingo") else: print("boo")