- #1
DeyuanGuo
- 7
- 0
Hello guys. I'm a newcomer here, and I'm from Beijing, China.
This rare creature, named Fibonacci Monster, was born from the Big Bang.
I happened to capture it by running the following Python code. I like it.
Another creature, named Fibonacci Deer, was found together.
Just by changing the first two number to 1, 5:
Can anybody give me a mathematic interpretation? Thanks!
--Deyuan
This rare creature, named Fibonacci Monster, was born from the Big Bang.
I happened to capture it by running the following Python code. I like it.
Code:
from turtle import *
j, k = 1, 1
while True:
i = j + k
j, k = i, j
forward(20)
right(i % 360)
Another creature, named Fibonacci Deer, was found together.
Just by changing the first two number to 1, 5:
Code:
from turtle import *
j, k = 1, 5
while True:
i = j + k
j, k = i, j
forward(20)
right(i % 360)
Can anybody give me a mathematic interpretation? Thanks!
--Deyuan
Last edited: