Q. What will list('abc') return?
β
Correct Answer: (B)
['a', 'b', 'c']
Explanation: list() converts a string into a list of its characters.