Computer Science, asked by ssarthakkarki, 6 months ago

A=[3,6,7,8,10,12,23,33,16,6,2,1]

Find the output of the following

a. print(A[3:-3:3])

b. print(A[::-3])

c. print(A[-3])

d. print(A[3:-3:-3])

e. print(A[-3:])

f. print(len(A[-3:]))​

Answers

Answered by arjunsuji05
0

Answer:

i [6,2,1]

ii [8,6]

iii []

iv 4

Explanation:

Similar questions