my paddle is not responding towards keys, Why? Python
i am building a pong game using python and my paddle is not responding towards keys. Why? It’s showing error TypeError: unsupported operand type(s) for -: ‘method’ and ‘int’ my code is in image and also this one:- from turtle import Screen, Turtle screen = Screen() screen.bgcolor(“black”) screen.setup(width= 800, height= 600) screen.title(“Pong Game”) screen.tracer(0) paddle […]