Header Ads Widget

Write a program to print first 10 natural numbers in reverse order in Python

Write a program to print first 10 natural numbers in reverse order in Python 

write a program to print the 10 natural numbers in reverse order . Natural numbers are start from one e.g 1 ,2 ,3 ....

Sample Output:

The first 10 Natural Numbers are: 
10
9
8
7
6
5
4
3
2
1

Write a program to print first 10 natural numbers in reverse order in Python 

The objective of the code is to print the 10 natural number in reverse order . 

Code(Python):-

print("The first 10 Natural Numbers are:");
for i in range(10,0,-1):
print(i)

Output:-

The first 10 Natural Numbers in Reverse order
10
9
8
7
6
5
4
3
2
1


Recommended Post :-

HCL Coding Questions:-

Capgemini Coding Questions:-

Companies interview:-

Full C course:-    

Key points:-

Cracking the coding interview:-

 Array and string:-

Tree and graph:-

Hackerearth Problems:-

Hackerrank Problems:-

Data structure:-

 MCQs:-