Q. What is the output of the following code?
Code:
print(list('123'))
β
Correct Answer: (A)
['1','2','3']
Explanation: list() converts a string into a list of characters.