Write the for loop statement to print the numbers from 9 to 2 in reverse order.
Answers
Answered by
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