Write a program in Python to display the numbers from 100 to 10000 that doesn't contain the digit "0" in them.
PLEASE NO SPAM ⛔
WANT GENUINE ANSWER
POINTS : 35
Answers
Answered by
1
r=int(input("Enter upper limit: "))
for a in range(2,r+1):
k=0
for i in range(2,a//2+1):
if(a%i==0):
k=k+1
if(k<=0):
print(a)
Modify this a bit please gibe brainliest
for a in range(2,r+1):
k=0
for i in range(2,a//2+1):
if(a%i==0):
k=k+1
if(k<=0):
print(a)
Modify this a bit please gibe brainliest
Answered by
2
Answer:
THIS is your answer
Explanation:
LIKE MY ANSWER
FOLLOW ME
Attachments:
Similar questions