Vidyalelo
Python · Q179

Functions in Python

Programming · Python · question 179

Q179

What will be the output of the following Python code? x = [12, 34] print(len(''.join(list(map(str, x)))))

A.
4
Answer
B.
5
C.
6
D.
error

Answer: Option A

Solution

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