adplus-dvertising
frame-decoration

Question

What is the output of the following?
x = [34, 56]
print(len(map(str, x)))

a.

[34, 56].

b.

[’34’, ’56’].

c.

34 56

d.

error

Posted under Python

Answer: (d).error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the following?