Turtle is a Python feature like a drawing board, which lets us command a turtle to draw different shapes using certain functions like forward(), right(), left() etc.
This is an artistic Python program of the Collatz Conjecture: one of the most famous unsolved math equations. Basically if X is even, divide by two, if X is odd, multiply by three and add one.