Skip to content

Instantly share code, notes, and snippets.

@Josip5521
Josip5521 / food.py
Created August 26, 2024 18:07
This is snake game we all play when we were child's.
from turtle import Turtle
import random
class Food(Turtle):
def __init__(self):
super().__init__()
self.shape("circle")
self.penup()