Skip to content

Commit 16e200a

Browse files
author
Christian Bender
committed
removed time sleep
1 parent 9e266f5 commit 16e200a

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

factors.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
import time
21
print('The factors of the number you type when prompted will be displayed')
3-
time.sleep(4)
4-
a = int(input('Type now //'))
2+
a = int(input('Type now // '))
53
b = a
64
while b > 0:
75
if(a%b == 0):
86
print(b)
97
b -= 1
10-
time.sleep(100)

0 commit comments

Comments
 (0)