Computer Science, asked by gayathrizz0210, 3 months ago

10.Suppose L=[10,[‘Apple’,’Orange’,’Grape’],3,’Good’,101]
Consider the above list and answer the following
i)L[1:]
ii)L[::2]
iii)L[2:4]
iv)L[1][2]

Answers

Answered by madhalaimuthucharlas
0

Answer:

1) ['Apple', 'orange', 'Grape'], 3, 'Good', 101

2) [ 10,3,101]

3) [3,'Good']

4) Grape

Hope this answer will help you

Similar questions