Write a Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700
Thanks for contributing an answer!
\(........\)
Avoid writing here -
You can refer this code :
print("numbers divisible by 7 & 5 are :") for i in range(1500,2701): if i%5==0 and i%7==0: print(" number ",i)
382 questions
257 answers
105 comments
155 users