0 votes
in Python by
What is the output of the following code?

1

2

x = ['ab','cd']

print(list(map(list, x)))

1 Answer

0 votes
by
The output of the following code is

[ [‘a’, ‘b’], [‘c’, ‘d’]
...