Computer Science, asked by venkataramanablr2020, 1 month ago

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 srindhi1017
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
Biology, 1 month ago