Learn practical skills, build real-world projects, and advance your career
my_fav_color = "blue"
my_fav_color
'blue'
color_1, color_2, color_3 = "Red", "Blue", "Green"
print("The standard pixel colors are :", color_1, "-", color_2, "-",color_3)
The standard pixel colors are : Red - Blue - Green
my_fav_color = "Cyan"