We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e266f5 commit 16e200aCopy full SHA for 16e200a
factors.py
@@ -1,10 +1,7 @@
1
-import time
2
print('The factors of the number you type when prompted will be displayed')
3
-time.sleep(4)
4
-a = int(input('Type now //'))
+a = int(input('Type now // '))
5
b = a
6
while b > 0:
7
if(a%b == 0):
8
print(b)
9
b -= 1
10
-time.sleep(100)
0 commit comments