Vidyalelo
Python · Q123

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 123

Q123

What will be the output of the following Python code? numbers = [1, 2, 3, 4] numbers.append([5,6,7,8]) print(len(numbers))

A.
4
B.
5
Answer
C.
8
D.
12

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board