Computer Science, asked by hardiksrivastav86, 6 months ago

Write the for loop statement to print the numbers from 9 to 2 in reverse order.

Answers

Answered by parthchawlaandrhythm
0

Answer:

for i in range(9,2,-1):

print(i)

Explanation:

see, I'm not sure if this will work but try it in the python ide. if not I am sorry for that.but if this works please mark my answer as the brainliest

Similar questions