Turtle graphics is one of the easiest ones in my opinion
It like drawing but the difference is your giving it a command to do
Example
- import turtle
- sam = turtle.Turtle()
- sam.forward(100)
- turtle.done()
It should move forward
There are more thing you can do click the picture to visit a website that well help you understand even more about Turtle graphics
if it has not moved than make sure you check your other codes
Note that turtle. done() is to keep your screen open after the code is done running
Leave a Reply