Computer Science, asked by rohitsingh1818, 17 hours ago

write a program in Python to create a tuple and display all number divisible by 3​

Answers

Answered by sorathiya
1

Answer:

lower = int(input("Enter lower range limit:"))

upper = int(input("Enter upper range limit:"))

for i in range(lower, upper+1):

if((i%3==0) & (i%5==0)):

print(i)

Attachments:
Similar questions