Vidyalelo
Python · Q163

Functions in Python

Programming · Python · question 163

Q163

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

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

Answer: Option D

Solution

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