ON227

Results 1 issues of ON227

When I try using this code from the book: colors = ["purple", "orange", "green"] guess = input("Guess a color:") if guess in colors: print("You guessed correctly!") else: print("Wrong! Try again.")...