Write a Python program to display all the two digit prime numbers
Answers
Answered by
3
Answer:
# Python program to display all the prime numbers within an interval
lower = 10
upper = 100
print("Prime numbers between", lower, "and", upper, "are:")
for num in range(lower, upper + 1):
# all prime numbers are greater than 1
if num > 1:
for i in range(2, num):
if (num % i) == 0:
break
else:
print(num)
Explanation:
hope this will help you..
happy learning...
Similar questions
Science,
3 months ago
Chemistry,
6 months ago
Computer Science,
6 months ago
English,
10 months ago
English,
10 months ago
Social Sciences,
10 months ago