Write a Python Program to print Those Numbers which are Divisible by 7 and Multiple of 5 in a Given Range of Numbers
Topic: Write a Python Program to print Those Numbers which are Divisible by 7 and Multiple of 5 in a Given Range of Numbers
Solution
lower = 1 upper = 100 for i in range (lower,upper+1): if(i%7==0 and i%5==0): print(i)
List all Python Programs