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
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.")
Comments
Leave a comment