
William A. answered 02/28/22
Tutor for Computer Science and Mathematics
Simply reassign first_color and second_color to their lower case versions.
You can do this with these statements.
print("Menu of Colors, Blue, Red, Yellow")
first_color = first_color.lower()
second_color = second_color.lower()
Once you've done this, you can check if their value is equal to whatever color in lower case that you're looking for.
So, your new code should look something like this.