Computer Science, asked by anupremaks004, 6 hours ago

Suppose L=[“Good", 5, ["Students", "Words"],"few"]
Consider the above list and answer the following
(a)L[2:] (b)L[2][1]

Answers

Answered by robinphili24
0

Answer:

Ok Should be easy enough.

Explanation:

  • L[2:] = ['Students', 'Words', 'few']
  • l[2,1] = ['Students', 5 ]
Similar questions