adplus-dvertising
frame-decoration

Question

What will be the output?
list1 = [1, 2, 3, 4]
list2 = [5, 6, 7, 8]
 
print(len(list1 + list2))

a.

2

b.

4

c.

5

d.

8

Posted under Python

Answer: (d).8

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output?