Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Turtle Graphics

Draws layered fractal tree patterns using Python's turtle graphics. Recursive draw calls render branching trees in multiple colors and sizes across the screen.

Example

  1. Run the script: a black Tkinter window titled "Fractal Tree Pattern" opens.
  2. A recursive branching tree is drawn in yellow, then the turtle turns and draws another in magenta, then red, then white — each at a small scale.
  3. The turtle speeds up and draws three more larger trees (light green, red, yellow, white) branching at 4/5 length.
  4. Finally, three even larger trees (cyan, yellow, magenta, white) are drawn at 6/7 length, filling the screen with overlapping fractal patterns.
  5. Click the window to close it.

How to run on localhost

python Turtle_Graphics.py

Dependencies

Standard library only (turtle).