Python program to print numbers divisible by the given number

Published: 02 April 2024
on channel: Py Code Labs
518
17

Python Program to Print All Numbers in a Range Divisible by a Given Number
This is a Python Program to print all numbers in a range divisible by a given number.

Problem Description
The program prints all numbers in a range divisible by a given number.

Problem Solution
1. Take in the upper range and lower range limit from the user.
2. Take in the number to be divided by the user.
3. Using a for loop, print all the factors which is divisible by the number.
4. Exit.
Program/Source Code
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)

Program Explanation

1. The 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.

Runtime Test Cases

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




#python #ballpython #ballpythonsofinstagram #ballpythons #royalpython #pythonsofinstagram #pythons #pythonregius #ballpythonmorphs #montypython #ballpythonsofig #ballpythonbreeder #pythonprogramming #reticulatedpython #ballpythonmorph #pythonbag #carpetpython #burmesepython #greentreepython #pythoncode #pythonskin #royalpythonsofinstagram #royalpythons #pythonleather #ballpythonbreeding #pythonsofig #python3 #pastelballpython #ballpythonlove #bananaballpython #bloodpython #pythonbracelet #montypythonandtheholygrail #ballpythonofinstagram #gelangpython #babyballpython #piedballpython #ballpythonmorphsofinstagram #pythonbags #pythonshoes #pycodelabs


On this page of the site you can watch the video online Python program to print numbers divisible by the given number with a duration of online in good quality, which was uploaded by the user Py Code Labs 02 April 2024, share the link with friends and acquaintances, this video has already been watched 518 times on youtube and it was liked by 17 viewers. Enjoy your viewing!