Fibonacci sequence with python turtle

Benedict Neo
3 min readApr 30, 2019

--

Here’s a simple code to create the fibonacci sequence.

fibonacci sequence

What is the Fibonacci Sequence?

Wikipedia-

In mathematics, the Fibonacci numbers, commonly denoted Fn form a sequence, called the Fibonacci sequence, such that each number is the sum of the two preceding ones, starting from 0 and 1.

So basically, the Fibonacci sequence starts like this: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55 and so on forever.

Examples Fibonacci Sequence in nature

Flower Petals & Seed heads

Photo by Emma Simpson-Wells on Unsplash

Pine cones

Photo by Chris Lawton on Unsplash

Spiral Galaxies

Photo by Guillermo Ferla on Unsplash

Faces

Photo by Ronda Darby on Unsplash

Shells

Shell

Why is the Fibonacci sequence important?

  1. The mathematics of the golden ratio and of the Fibonacci sequence are intimately interconnected. Fibonacci numbers and the golden ratio have been used in works of art and architecture for centuries.
  2. The patterns of the sequence is reflected in the structures of various plants, animals and humans, and the manifestations of the Fibonacci numbers and the golden ratio are seemingly endless. Thus, this indicates the mathematical nature of a world formed with order and precision.
  3. This sequence also has myriads of applications in many other areas that is worth exploring. You can read more about them in the links below.

--

--