An open API service indexing awesome lists of open source software.

https://github.com/geeksloth/mandelbrot-python

Demonstration of Fractal Mandelbrot developed in Python 3
https://github.com/geeksloth/mandelbrot-python

fractal mandelbrot

Last synced: about 1 year ago
JSON representation

Demonstration of Fractal Mandelbrot developed in Python 3

Awesome Lists containing this project

README

          

# Mandelbrot-Python
Demonstration of Fractal Mandelbrot developed in Python 3

```python
MAX_ITER = 80
def mandelbrot(c):
z = 0
n = 0
while abs(z) <= 2 and n < MAX_ITER:
z = z*z + c
n += 1
return n
```
Mandelbrot output:
![Mandelbrot](output-color.png)

Additional Julia output:
![Julia](output-julia.png)