Snippets Collections
>>> def z(n, c):
...     if n == 0:
...         return 0
...     else:
...         return z(n - 1, c) ** 2 + c
star

Fri Apr 22 2022 23:02:12 GMT+0000 (Coordinated Universal Time) https://realpython.com/mandelbrot-set-python/

#python #mandelbrot #complex_numbers

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension