adplus-dvertising
frame-decoration

Question

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

a.

4

b.

5

c.

6

d.

error

Posted under Python

Answer: (d).error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following?