adplus-dvertising
frame-decoration

Question

What is the output of the following?
x = [[0], [1]]
print(len(' '.join(list(map(str, x)))))

a.

2

b.

3

c.

7

d.

8

Posted under Python

Answer: (c).7

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?