1import turtle
2t = turtle.Turtle()
3t.color(color) # choose a color
4t.begin_fill() # if you want it to be filled with color later
5t.circle(10) # the function "circle" and the radious.
6t.end_fill() # completing the filling of the circle.
7# try to do it and see if it works. it worked for me.
1 >>> tp = turtle.pos()
2 >>> tp
3 (0.00,0.00)
4 >>> turtle.setpos(60,30)
5 >>> turtle.pos()
6 (60.00,30.00)
7 >>> turtle.setpos((20,80))
8 >>> turtle.pos()
9 (20.00,80.00)
10 >>> turtle.setpos(tp)
11 >>> turtle.pos()
12 (0.00,0.00)
13