First time here? Checkout the FAQ!
x
menu search
brightness_auto
more_vert

Write a Python program to find those numbers which are divisible by 7 and multiple of 5, between 1500 and 2700

thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike

1 Answer

more_vert

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)
thumb_up_off_alt 0 like thumb_down_off_alt 0 dislike
...