Skip to content
Snippets Groups Projects
Verified Commit ea8dd078 authored by dos's avatar dos
Browse files

mandelbrot: Use integer division for range

parent 60c8de53
No related branches found
No related tags found
1 merge request!600Simulator improvements
......@@ -37,7 +37,7 @@ class App(Application):
if y < height:
zy = y * (self.yb - self.ya) / (height - 1) + self.ya
inners = 0
for x in range(width / 2):
for x in range(width // 2):
zx = x * (self.xb - self.xa) / (width - 1) + self.xa
z = zy + zx * 1j
c = z
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment