Computer Science, asked by veerajsai, 6 months ago

Given a list
L=[10,20,30,40,50,60,70] what would L[1:4] return? *
O (10,20,30,40]
O [20,30,40,50]
[20,30,40]
O [30,40,50]​

Answers

Answered by sujanmukherjee9614
2

Answer:

the answer will be 20,30,40

Explanation:

the 2nd, 3rd and the 4th element will be printed

Similar questions