Python Turtle icon
Python Turtle icon

Python Turtle

 Like

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzeig, Seymour Papert and Cynthia Solomon in 1967.

Python Turtle screenshot 1

License model

  • FreeOpen Source

Country of Origin

  • US flagUnited States

Platforms

  • Mac
  • Windows
  • Linux
  No rating
0likes
0comments
0news articles

Features

Suggest and vote on features
No features, maybe you want to suggest one?

 Tags

Python Turtle News & Activities

Highlights All activities

Recent activities

No activities found.

Python Turtle information

AlternativeTo Category

Development

GitHub repository

  •  66,307 Stars
  •  31,595 Forks
  •  9030 Open Issues
  •   Updated Apr 15, 2025 
View on GitHub

Popular alternatives

View all

Our users have written 0 comments and reviews about Python Turtle, and it has gotten 0 likes

Python Turtle was added to AlternativeTo by ddabrahim on Jul 19, 2023 and this page was last updated Jul 24, 2023.
No comments or reviews, maybe you want to be first?
Post comment/review

What is Python Turtle?

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzeig, Seymour Papert and Cynthia Solomon in 1967.

Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an import turtle, give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.right(25), and it rotates in-place 25 degrees clockwise.

By combining together these and similar commands, intricate shapes and pictures can easily be drawn.

Python Turtle Videos