turtle
Stdlib — MiscPython 2.0+Beginner
Turtle graphics for learning and simple drawing
Quick Info
- Documentation
- Official Docs
- Python Version
- 2.0+
- Dependencies
- None — Python Standard Library
- Install
Included with Python
Learn by Difficulty
Quick Example
python
import turtle print(f"Module: turtle") print(f"Contents: {dir(turtle)[:10]}")
The turtle module is part of Python's standard library. Turtle graphics for learning and simple drawing.
Try in PlaygroundTags
stdlibutility