Q20
What is the output of the following code:my_list = [1, 2, 3]my_list.append(4)print(my_list)
A.
[1, 2, 3]
AnswerB.
[4, 1, 2, 3]
C.
[1, 2, 3, 4]
D.
None of the above
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board