Drawing With Turtle

+

Creating a Canvas

>>> import turtle

>>> t = turtle.Pen()

Moving the Turtle

>>> t.forward(50) 
 
>>> t.backward(100) 

>>> t.left(90)

>>> t.right(90)

make yourself more creative

Thank You

Turtle

By Aditya Ramteke