Skip to content

Commit 0475a51

Browse files
committed
Add snake game and update readme
1 parent 35f5bc0 commit 0475a51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Snake Game/food.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from turtle import Turtle
22
import random
33

4-
class Food(Turtle):
5-
def __init__(self):
4+
class Food(Turtle): #It refers to dot as food
5+
def __init__(self):
66
super().__init__()
77
self.shape("circle")
88
self.penup()

0 commit comments

Comments
 (0)