
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Print All Numbers in a Range Divisible by a Given Number in Python
When it is required to print all the elements in a given range that is divisible by a specific number, a simple for loop can be used.
Below is a demonstration of the same −
Example
lower_num = int(input("Enter lower range limit...")) upper_num = int(input("Enter upper range limit...")) div_num = int(input("Enter the number that should be divided by...")) for i in range(lower_num,upper_num+1): if(i%div_num==0): print(i)
Output
Enter lower range limit...3 Enter upper range limit...8 Enter the number that should be divided by...2 4 6 8
Explanation
The upper and lower range of numbers is taken as input from the user.
The number by which the range of numbers have to be divided is also taken by the user.
The lower and upper range are iterated over, and if the number is divisible, it is printed on the screen.
This is the output.
Advertisements