Posts by Enrico Lima • 1 point
1 post
-
0
votes0
answers27
viewsQ: I would like to know how to capture more than one key being pressed at the same time?
In case I’m wanting to make both paddle move at the same time. import turtle # Function def paddle_a_up(): y = paddle_a.ycor() y += 20 paddle_a.sety(y) def paddle_a_down(): y = paddle_a.ycor() y -=…