- first item
- second item
- third item
-
project name
- remove the dot from the repo name to avoid the issue we had
- remove fr en from
Fr_En_Flashcard.
to allow for adding new languages or topis in the future
-
readme
- add some screenshoots to readme. or even better have an interactive demo online
- add installation instructions
- add instructions on how to add new words
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(): |