adplus-dvertising
frame-decoration

Question

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

a.

(‘[0] [1]’,)

b.

(’01’,)

c.

[0] [1].

d.

01

Posted under Python

Answer: (c).[0] [1].

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?