I need to add the space bar into a event. I know how to set these things up, but I don't know how to tell python that the space bar is what I want pressed. I have tried...
wn.listen()
wn.onkeypress(p_jump, " ")
but that allows any key that isn't already binded to be pressed.