aboutsummaryrefslogtreecommitdiffstats
path: root/smallmult.py
diff options
context:
space:
mode:
Diffstat (limited to 'smallmult.py')
-rw-r--r--smallmult.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/smallmult.py b/smallmult.py
index 88c3dcc..d672ef0 100644
--- a/smallmult.py
+++ b/smallmult.py
@@ -5,7 +5,6 @@
#by all of the numbers from 1 to 20?
import PIL, math
-import numpy as np
def isDivisible(num, divisors):
divisible = True
@@ -23,5 +22,5 @@ while (not found):
start+=20
found = isDivisible(start,divs)
-print start
-print str(isDivisible(start, divs))
+print(start)
+print(str(isDivisible(start, divs)))