Examveda

What will be the output of the following Python code?
x = [34, 56]
print(len(map(str, x)))

A. [34, 56]

B. ['34', '56']

C. 34 56

D. error

Answer: Option D


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python