Skip to content

Commit b57bc39

Browse files
authored
Update factors.py
Made the code more efficient.
1 parent b300b4c commit b57bc39

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

factors.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
import math
2+
13
print('The factors of the number you type when prompted will be displayed')
24
a = int(input('Type now // '))
3-
b = a
4-
while b > 0:
5+
b = 1
6+
while b <= math.sqrt(a):
57
if a % b == 0:
6-
print(b)
7-
b -= 1
8+
print("A factor of the number is ", b)
9+
print("A factor of the number is ", int(a/b))
10+
b += 1

0 commit comments

Comments
 (0)