Ping Pong Game Using Python

from turtle import Turtle

class Ball(Turtle):
def init(self):
super().init()
self.shape(“circle”)
self.color(“white”)
self.penup()
self.x_move = 10
self.y_move = 10

3 إعجابات