Q. What is the output of the following?
Code:
x = ['ab', 'cd'] print(len(list(map(list, x))))
β
Correct Answer: (A)
2
x = ['ab', 'cd'] print(len(list(map(list, x))))
You must be Logged in to update hint/solution