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