Q151
What will be the output of the following Python code? x = [34, 56] print(len(map(str, x)))
A.
[34, 56]
B.
['34', '56']
C.
34 56
D.
error
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board