prime number python code example
Example 1: prime factorization python
import math
def primeFactors(n):
while n % 2 == 0:
print(2)
n = n / 2
for i in range(3, int(math.sqrt(n)) + 1, 2):
while n % i == 0:
print(i)
n = n / i
if n > 2:
print(n)
primeFactors(256)
Example 2: determine if number is prime python
def primeCheck(n):
if n==1 or n==0 or (n % 2 == 0 and n > 2):
return "Not prime"
else:
for i in range(3, int(n**(1/2))+1, 2):
if n%i == 0:
return "Not prime"
return "Prime"
Example 3: prime number in python
def prime(num):
if num>1:
s=int(num/2)
for i in range(2,s+1):
if num%i==0:
return("not prime")
break
return("prime")
print(prime(239))
Example 4: prime checker in python
def CheckIfPrime ():
a1 = input("which number do you want to check")
a = int(a1)
b = 2
c = ("yes")
while b < a:
if a%b == 0:
c = ("no")
b = b+1
print(c)
CheckIfPrime ()
Example 5: prime number program python
lower = 900
upper = 1000
print("Prime numbers between", lower, "and", upper, "are:")
for num in range(lower, upper + 1):
if num > 1:
for i in range(2, num):
if (num % i) == 0:
break
else:
print(num)Copied
Example 6: check if a number is prime python
n=input('Enter the number you want to check: ')
try:
n=int(n)
except:
print('Wrong input.')
quit()
if n==1 or n==0:
print('This is neither prime nor composite')
else:
c=0
for i in range(2,n):
if n%i==0:
c=c+1
if c==0:
print("This is a prime number")
else:
print('This is a composite number.')