Computer Science, asked by ranjankoustubh38, 17 days ago

If Y = ['RED', 'GREEN'], then write insert command so that the elements of Y will be ['RED', 'BLUE', 'GREEN']

Answers

Answered by sb33
0

Explanation:

color_list = ['RED', 'BLUE', 'GREEN']

print( "%s %s"%(color_list[0],color_list[-1]))

Similar questions