What is the output of this program? colors = "red,orange,yellow,green,blue,indigo,violet" colorList = colors.split(",") print(colorList) (1 point) Responses colorList colorList red,orange,yellow,green,blue,indigo,violet red,orange,yellow,green,blue,indigo,violet redorangeyellowgreenblueindigoviolet redorangeyellowgreenblueindigoviolet ['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']

1 answer

The output of the provided program will be:

['red', 'orange', 'yellow', 'green', 'blue', 'indigo', 'violet']

This is because the split(",") method is used to break the string colors into a list of substrings using the comma as a delimiter. Therefore, colorList becomes a list containing each individual color as an element.