Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Brots the Mandel n number of times
- def BenoitBMandelbrot(n):
- b = ""
- for x in range(0, n):
- b += "^" * x + "Benoit "
- for x in range(n - 1, -1, -1):
- b += "^" * x + "Mandelbrot "
- return b
Advertisement
Add Comment
Please, Sign In to add comment