turtle.title()
  • References/Python/Python/Frameworks

turtle.title(titlestring)

2025-01-10 15:47:30
turtle.getpen()
  • References/Python/Python/Frameworks

turtle.getpen() Return the Turtle object itself. Only reasonable use: as a function to return the “anonymous turtle”:

2025-01-10 15:47:30
turtle.pu()
  • References/Python/Python/Frameworks

turtle.pu() turtle.up() Pull the pen up – no drawing when moving.

2025-01-10 15:47:30
turtle.width()
  • References/Python/Python/Frameworks

turtle.width(width=None)

2025-01-10 15:47:30
turtle.mode()
  • References/Python/Python/Frameworks

turtle.mode(mode=None)

2025-01-10 15:47:30
turtle.heading()
  • References/Python/Python/Frameworks

turtle.heading() Return the turtle’s current heading (value depends on the turtle mode, see mode()).

2025-01-10 15:47:30
cmd.Cmd.postcmd()
  • References/Python/Python/Frameworks

Cmd.postcmd(stop, line) Hook method executed just after a command dispatch is finished. This method is a stub in Cmd;

2025-01-10 15:47:30
turtle.hideturtle()
  • References/Python/Python/Frameworks

turtle.hideturtle() turtle.ht() Make the turtle invisible. It’s a good idea to do this while you’re in the middle

2025-01-10 15:47:30
turtle.clearscreen()
  • References/Python/Python/Frameworks

turtle.clearscreen() Delete all drawings and all turtles from the TurtleScreen. Reset the now empty TurtleScreen to its initial

2025-01-10 15:47:30
turtle.clone()
  • References/Python/Python/Frameworks

turtle.clone() Create and return a clone of the turtle with same position, heading and turtle properties.

2025-01-10 15:47:30