0 votes
75 views
in Python Programming (SBLC) by (420 points)
edited
Write a Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700

1 Answer

0 votes
by (98.9k points)
edited

print("numbers divisible by 7 & 5 are :")
for i in range(1500,2701):
    if i%5==0 and i%7==0:

        print(" number  ",i)
 

Related questions

Doubtly is an online community for engineering students, offering:

  • Free viva questions PDFs
  • Previous year question papers (PYQs)
  • Academic doubt solutions
  • Expert-guided solutions

Get the pro version for free by logging in!

5.7k questions

5.1k answers

108 comments

537 users

...