shlex.shlex.wordchars
  • References/Python/Python/Frameworks

shlex.wordchars The string of characters that will accumulate into multi-character tokens. By default, includes all ASCII alphanumerics

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

turtle.st() Make the turtle visible. >>>

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

turtle.addshape(name, shape=None) There are three different ways to call this function:

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

turtle.bgpic(picname=None)

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

turtle.mainloop() turtle.done() Starts event loop - calling Tkinter’s mainloop function. Must be the last statement

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

turtle.setx(x)

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

turtle.getcanvas() Return the Canvas of this TurtleScreen. Useful for insiders who know what to do with a Tkinter Canvas.

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

Cmd.intro A string to issue as an intro or banner. May be overridden by giving the cmdloop() method an argument

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

Cmd.cmdqueue A list of queued input lines. The cmdqueue list is checked in cmdloop() when new input is needed;

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

turtle.onkey(fun, key) turtle.onkeyrelease(fun, key)

2025-01-10 15:47:30