Computer Science, asked by anshikadixit946, 2 months ago

3. Predict the output
List1 = [1,2,3,4]
List2 = [5,6,7,8]
print (len(List1+List2))

2
4
5
8​

Answers

Answered by mjeystech
1

Answer:

the answer is 8

Explanation:

because the length of first array is 4 and also the length of second array is 4 and 4 and 4+4=8

Similar questions