Computer Science, asked by gayathrizz0210, 2 months ago

Suppose L= [“hai”, [2,3,4], 5, ’Keyboard’]
Consider the above list and answer the following:
a) L[2:]
b) L[1][1]
c) L[3:]
d) L[1:2]

Answers

Answered by AnushGudimetla
3

Answer:

a) [5, 'Keyboard']

b) 3

c) ['Keyboard']

d) [[2, 3, 4]]

Hope this helps. Thank you

ps. - Mark this as the Brainliest answer and follow me if this really helped (please, ok?)

Similar questions