write a python program to display the first and last colors from a list code example
Example: write a python program to display the first and last colors from a list
color_list = ["Red","Green","White" ,"Black"]
print( "%s %s"%(color_list[0],color_list[-1]))