Vidyalelo
Python · Q151

Functions in Python

Programming · Python · question 151

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board