If Y = ['RED', 'GREEN'], then write insert command so that the elements of Y will be ['RED', 'BLUE', 'GREEN']
Answers
Answered by
0
Explanation:
color_list = ['RED', 'BLUE', 'GREEN']
print( "%s %s"%(color_list[0],color_list[-1]))
Similar questions