Computer Science, asked by jenishpatel3805, 3 months ago

Find the output: 2 A=[11, 22, 33, 44, 55] B=len(A) for I in range(0,B,2): print(i)

Answers

Answered by imntshvrma
0

Answer:

0

2

4

Explanation:

A is a list

B= len(A)

so B will contain 5

for i in range (0, B, 2)

here starting is 0, ending is B-1 i.e. 5-1 =4 and steps are 2.

so

0

2

4

are printed.

Similar questions