Print und Leerzeile

This commit is contained in:
2026-01-03 15:47:52 +01:00
parent dea0fa5b0a
commit cc7b16e6b0

View File

@@ -8,8 +8,9 @@ def mandelbrot (c, max_iter):
z = z*z + c
return max_iter
width = 800
height = 600
width = 600
height = 800
img = Image.new('RGB', (width, height))
# die komplexe Ebene definieren
@@ -23,3 +24,4 @@ for x in range(width):
c = complex(real, imag)
print ("x-> ", x, " y-> ", y, " -> ",c)