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