Q:

Python | Program to print all numbers which are divisible by M and N in the List

belongs to collection: Python List Programs

0

Given a list of the integers and MN and we have to print the numbers which are divisible by MN in Python.

Example:

    Input:
    List = [10, 15, 20, 25, 30]
    M = 3, N=5

    Output:
    15
    30

To find and print the list of the numbers which are divisible by M and N, we have to traverse all elements using a loop, and check whether the number is divisible by M and N, if number is divisible by M and N both print the number.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program:

# declare a list of integers
list = [10, 15, 20, 25, 30]

# declare and assign M and N 
M = 3
N = 5 

# print the list
print "List is: ", list

# Traverse each element and check 
# whether it is divisible by M, N 
# or not, if condition is true print 
# the element
print "Numbers divisible by {0} and {1}".format (M, N)
for num in list:
	if( num%M==0 and num%N==0 ) :
		print num

Output

    List is:  [10, 15, 20, 25, 30]
    Numbers divisible by 3 and 5
    15
    30

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python List Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Python | Create a list from the specified start to... >>
<< Python | Program to Create two lists with EVEN num...