Python Forum

Full Version: [split] can you explain me about addition of keypress to move the turtle..?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
# Keyboard Binding
wn.listen()
wn.onkeypress(paddle_a_up,"w")
wn.onkeypress(paddle_a_down,"s")
wn.onkeypress(paddle_a_left,"a")
wn.onkeypress(paddle_a_right,"d")
can you explain me about addition of keypress to move the turtle..?
thank you
https://docs.python.org/3.1/library/turt...onkeypress Wrote:turtle.onkeypress(fun, key=None)
Parameters:
  • fun – a function with no arguments or None
  • key – a string: key (e.g. “a”) or key-symbol (e.g. “space”)
Bind fun to key-press event of key if key is given, or to any key-press-event if no key is given. Remark: in order to be able to register key-events, TurtleScreen must have focus. (See method listen().)

>>> def f():
...     fd(50)
...
>>> screen.onkey(f, "Up")
>>> screen.listen()