Examveda

What will be the output of the following Python code?
x = 1234
print(list(map(list, x)))

A. [1, 2, 3, 4]

B. [1234]

C. [[1], [2], [3], [4]]

D. none of the mentioned

Answer: Option D


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python