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

Questions & AnswersCategory: Programming LanguageWhat will be the output of the following Python code? x = [[0], [1]] print((‘ ‘.join(list(map(str, x))),))
Geek Boy Staff asked 2 years ago

What will be the output of the following Python code?

x = [[0], [1]]
print((' '.join(list(map(str, x))),))

a. 01
b. [0] [1]
c. (’01’.
d. (‘[0] [1]’,.