Examveda

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

A. ('[0] [1]',)

B. ('01',)

C. [0] [1]

D. 01

Answer: Option C


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python