This is a Python Program to print all numbers in a range divisible by a given number.
The program prints all numbers in a range divisible by a given number.
1. Take in the upper range and lower range limit from the user.
2. Take in the number to be divided by from the user.
3. Using a for loop, print all the factors which is divisible by the number.
4. Exit.
Here is the source code of the Python Program to print all numbers in a range divisible by a given number. The program output is also shown below.
lower=int(input("Enter lower range limit:")) upper=int(input("Enter upper range limit:")) n=int(input("Enter the number to be divided by:")) for i in range(lower,upper+1): if(i%n==0): print(i)
1. User must enter the upper range limit and the lower range limit.
2. Then the user must enter the number to be divided from the user.
3. The value of i ranges from the lower limit to the upper limit.
4. Whenever the remainder of the number divided by i is equal to 0, i is printed.
Case 1: Enter lower range limit:1 Enter upper range limit:50 Enter the number to be divided by:5 5 10 15 20 25 30 35 40 45 50 Case 2: Enter lower range limit:50 Enter upper range limit:100 Enter the number to be divided by:7 56 63 70 77 84 91 98
Sanfoundry Global Education & Learning Series – Python Programs.
To practice all Python programs, here is complete set of 150+ Python Problems and Solutions.
- Check Python Books
- Check Information Technology Books
- Apply for Programming Internship
- Apply for Python Internship
- Practice Programming MCQs