Computer Science, asked by palrachna058, 6 months ago

write a python program to input a number and check whether it is divisible by 3 and 5 both numbers.
please answer in python​

Answers

Answered by rishisharma938pddsf0
11

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)

Explanation:

If it works do mark me brainlist

Answered by DarkShadow040
12
The answer is given in the picture. Hope this helps you:) Please Mark this answer brainliest
Attachments:
Similar questions