Login
Remember
Register
Ask a Question
What is the output of the following code?
0
votes
asked
May 17, 2020
in
Python
by
sharadyadav1986
What is the output of the following code?
1
2
x = ['ab','cd']
print(list(map(list, x)))
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 17, 2020
by
Robindeniel
The output of the following code is
[ [‘a’, ‘b’], [‘c’, ‘d’]
...