turtle.setposition(x, y=None)
Parameters: |
|
---|
If y is None
, x must be a pair of coordinates or a Vec2D
(e.g. as returned by pos()
).
Move turtle to an absolute position. If the pen is down, draw line. Do not change the turtle’s orientation.
1 2 3 4 5 6 7 8 9 10 11 12 | >>> tp = turtle.pos() >>> tp (0.00,0.00) >>> turtle.setpos(60,30) >>> turtle.pos() (60.00,30.00) >>> turtle.setpos((20,80)) >>> turtle.pos() (20.00,80.00) >>> turtle.setpos(tp) >>> turtle.pos() (0.00,0.00) |
Please login to continue.