I want to access the first two items in the list and change it to the variable "first_two" but i can't find my mistake, please help.
Color_list = ["red", "blue", "green"]
Color_list[0:2]
['red', 'blue']
first_two = "red", "blue"
Color_list[0:2] = ("first_two")
Then it throws out like this
['f', 'i', 'r', 's', 't', '_', 't', 'w', 'o', 'green']