How do I set the startpos (topleft of my turtle square) when starting my code?
And I don\'t mean that it starts from the middle and then goes to that position.
At the beginning of the code, after defining the turtle, you can do:
tom.penup() tom.goto(x coordinate that you want, y coordinate that you want) tom.pendown()
This will make the turtle invisible. Then go to the position given by x and y, it makes the turtles trail visible again.