Guest User

Benoiting Mandelbrots

a guest
Sep 17th, 2018
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. # Brots the Mandel n number of times
  2. def BenoitBMandelbrot(n):
  3.     b = ""
  4.     for x in range(0, n):
  5.         b += "^" * x + "Benoit "
  6.     for x in range(n - 1, -1, -1):
  7.         b += "^" * x + "Mandelbrot "
  8.     return b
Advertisement
Add Comment
Please, Sign In to add comment