Answers for "prime number by python function"

0

primes in python

from math import sqrt
for i in range(2, int(sqrt(num)) + 1):
    if num % i == 0:
        print("Not Prime")
        break
    print("Prime")

# Note: Use this if your num is big (ex. 10000 or bigger) for efficiency
# The result is still the same if the num is smaller
Posted by: Guest on August-13-2021

Code answers related to "prime number by python function"

Python Answers by Framework

Browse Popular Code Answers by Language