Skip to content

Commit 748093a

Browse files
author
Christian Bender
committed
removed parenthesis
1 parent 16e200a commit 748093a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

factors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
a = int(input('Type now // '))
33
b = a
44
while b > 0:
5-
if(a%b == 0):
5+
if a % b == 0:
66
print(b)
77
b -= 1

0 commit comments

Comments
 (0)