Examveda

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

A. 4

B. 5

C. 6

D. error

Answer: Option A


This Question Belongs to Python Program >> Functions In Python

Join The Discussion

Related Questions on Functions in Python