Python Program to Print Numbers From 1 to N and N to 1

Python program to print numbers from 1 to n and n to 1; Through this tutorial, i am going to show you how to print number from 1 to n and n to 1 in python.

In this tutorial, i will write a python program to print numbers from 1 to N and N to 1.

Python Program to Print Numbers From 1 to N and N to 1

  • Python program to print numbers from 1 to N using for loop
  • Python program to print numbers from N to 1 using while loop

Python program to print numbers from 1 to N using for loop

# Python program to print numbers from 1 to n
n = int(input("Please Enter any Number: "))
print("The List of Natural Numbers from 1", "to", n) 
for i in range(1, n + 1):
    print (i, end = '  ')

Output

Please Enter any Number:  15 
The List of Natural Numbers from 1 to 15 
1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  

Python program to print numbers from n to 1 using while loop

# Python program to print numbers from n to 1
number = int(input("Please Enter any Number: "))
i = number
while ( i >= 1):
    print (i, end = '  ')
    i = i - 1

Output

Please Enter any Number:  5 
5  4  3  2  1

Recommended Python Tutorials

Leave a Comment