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’]

Related questions

0 votes
asked Jan 18, 2021 in Python by SakshiSharma
0 votes
asked Jan 18, 2021 in Python by SakshiSharma
...