Hello I have a list containing one string that I need to split in two on the comma:
value = ['Red, Orange']
I split using :
value = value[0].split(", ")
But I get :
value[0] = "Red"
and
value[1:] = ["Orange"]
why is value[1:]
a list? What can I do to get
value[1:] = "Orange"
Thanks