forked from seeditsolution/pythonprogram
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpythonprime
More file actions
22 lines (18 loc) · 520 Bytes
/
pythonprime
File metadata and controls
22 lines (18 loc) · 520 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Program to check if a number is prime or not
num = 407
# To take input from the user
#num = int(input("Enter a number: "))
# prime numbers are greater than 1
if num > 1:
# check for factors
for i in range(2,num):
if (num % i) == 0:
print(num,"is not a prime number")
print(i,"times",num//i,"is",num)
break
else:
print(num,"is a prime number")
# if input number is less than
# or equal to 1, it is not prime
else:
print(num,"is not a prime number")