We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e200a commit 748093aCopy full SHA for 748093a
factors.py
@@ -2,6 +2,6 @@
2
a = int(input('Type now // '))
3
b = a
4
while b > 0:
5
- if(a%b == 0):
+ if a % b == 0:
6
print(b)
7
b -= 1
0 commit comments