Computer Science, asked by hellrider44391, 1 year ago

for i in range(0, 10, -2):
print(i)

Answers

Answered by omegads03
0

for i in range(0, 10, -2):

print(i)

The value of i is 0,1,2,3,4,5,6,7,8,9,10.

Answered by harrywarman580
0

Answer:

0

Explanation:

it counts from 0(value 1) to 10(value 2) discluding 10 in steps of -2(value 3) but it cant so it just does 0

Similar questions