Skip to content

Instantly share code, notes, and snippets.

View kamil-gwozdz's full-sized avatar
🦖

Kamil Gwóźdź kamil-gwozdz

🦖
View GitHub Profile
@kamil-gwozdz
kamil-gwozdz / car_manager.py
Created November 28, 2023 13:41 — forked from Cistress/car_manager
def increase_score from Scoreboard does not work as intended as the turtle leveled up (at line 40 main script and line 22 scoreboard script)
COLORS = ["red", "orange", "yellow", "green", "blue", "purple"]
STARTING_MOVE_DISTANCE = 5
MOVE_INCREMENT = 10
game_is_on = True
from turtle import Turtle
import random
class CarManager():