Write a Python program to find and print those numbers which are divisible by 5,
between 1500 and 2700 (both included)
help needed
Answers
Answered by
3
Answer:hope it heleped u army
Explanation:nl=[]
for x in range(1500, 2701):
if (x%7==0) and (x%5==0):
nl.append(str(x))
print (','.join(nl))
Similar questions