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
- Host: GitHub
- URL: https://github.com/geeksloth/mandelbrot-python
- Owner: geeksloth
- Created: 2023-08-03T07:30:32.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-03T09:17:53.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T14:48:40.983Z (over 1 year ago)
- Topics: fractal, mandelbrot
- Language: Python
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:

Additional Julia output:
