Q. What is the output of `print(list('abc'))`?
β
Correct Answer: (B)
['a', 'b', 'c']
Explanation: `list('abc')` splits the string into a list of characters.