Skip to content

Commit d8c9676

Browse files
Merge pull request #236 from faresbessrour/compilations-fix
4 Digits Number Combinations wasn't compiling
2 parents 9438b64 + 6673b2f commit d8c9676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

4 Digit Number Combinations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ def FourDigitCombinations():
33
numbers=[]
44
for code in range(10000):
55
code=str(code).zfill(4)
6-
print code,
6+
print(code)
77
numbers.append(code)
88

99
# Same as above but more pythonic

0 commit comments

Comments
 (0)