Suppose L=[“hello”, [1,2,3],5,”abc”]
Consider the above list and answer the following:
a) L[3:] b) L[::2]
c)L[1:2] d) L[1][1]
Answers
Answered by
1
Answer:
a) hello abc
b) hello ab
c) hello a ab
d) hello a a
Similar questions