Q. Which function can convert a string to a list of characters?
β
Correct Answer: (C)
list()
Explanation: `list('abc')` returns `['a', 'b', 'c']`.