Hello, there! This is my first Snake app, which I built with python OOP conception. You will see all descriptions below. One of the futures of app that your snake speed growing after every 5 points.
python -m venv env
Before start working I activated working env
pip install pillow
class Snake(tk.Canvas):
pass
...
#instance of Tk
root = tk.Tk()
#making resizable window
root.resizable(False, False)
$ git init
$ git status
$ git add .
$ git commit -m 'My first app pushing to Github'
$ git remote add origin https://github.com/beckmiller/snake-game.git
$ git push -u origin master
That's all thank you for your attention!