Python, move turtle to relative coordinates
Python, move turtle to relative coordinates
回答1
Simply get current position, change it and move to it
turtle.goto( turtle.pos() + (15,-15) )
回答1
Simply get current position, change it and move to it
turtle.goto( turtle.pos() + (15,-15) )