Answer to Question #283215 in Python for xxx

Question #283215

1.The colors red, blue, and yellow are known as the primary colors because they cannot be made by mixing other colors. When you mix two primary colors, you get a secondary color, as shown here: 

When you mix red and blue, you get purple.

When you mix red and yellow, you get orange. 

When you mix blue and yellow, you get green. 


Design a program that prompts the user to enter the names of two primary colors to mix. If the user enters anything other than “red,” “blue,” or “yellow,” the program should display an error message. Otherwise, the program should display the name of the secondary color that results.


Note: Using set data structure to solve above programme


1
Expert's answer
2021-12-28T13:08:19-0500
the_first_color = input("Enter primary color:")
the_second_color = input("Enter primary color:")
two_colors = the_first_color or the_second_color


if the_first_color == ("red", "blue", "yellow"):
    the_first_color = True


elif the_second_color == ("red", "blue", "yellow"):
    the_second_color = True


elif two_colors == "red" or "blue":
    print("When you mix red and blue, you get purple")


elif two_colors == "yellow" or "blue":
    print("When you mix yellow and blue, you get green")


elif two_colors == "yellow" or "red":
    print("When you mix yellow and red, you get orange")


else: print("You didn't input two primary colors.")

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS