Q.

numbers = [1, 2, 3, 4]
numbers.append([5,6,7,8])
print(len(numbers))

A. 4
B. 5
C. 8
D. 12
Answer» B. 5
Explanation: a list is passed in append so the length is 5.
2.1k
0
Do you find this helpful?
4

Discussion

No comments yet