Turtle in Python - Main Points
1. Turtle is a Python module used for drawing graphics and shapes.
2. The turtle is like a pen on the screen that moves and draws.
3. Turtle starts at the center of the screen (0,0) by default.
4. Basic movements: forward(), backward(), right(), left().
5. Pen commands: penup() (stop drawing), pendown() (start drawing).
6. Color and speed can be changed using color() and speed().
7. Loops can be used to draw shapes repeatedly (like squares, triangles, circles).
8. [Link]() is used to end the turtle graphics session.
9. Turtle helps understand geometry, loops, and programming logic.
10. It is fun and interactive, suitable for beginners to learn programming visually.