Computer Science, asked by cosmicbeast0, 1 month ago

A program using for loop in Python to print first 10 natural numbers in reverse order *

For i in range (10,0,-1)

For in range (10,1,1)

For i in range ( 10,1,-1)

For in range ( 10,0 1)​

Answers

Answered by nidhitrivedi1976
1

Answer:

the correct answer is For I in range (10,0-1)..

Similar questions