Answers for "Write a Python program to print all prime numbers in range(n,m), where n and m are taken as input from the user"

0

python program to find n prime numbers

num = 10
for i in range(2,num+1):
    for j in range(2,i):
        if(i%j == 0):
            break
    else:
        print(i)
Posted by: Guest on March-10-2021

Code answers related to "Write a Python program to print all prime numbers in range(n,m), where n and m are taken as input from the user"

Python Answers by Framework

Browse Popular Code Answers by Language