Today in class I made a WordPress Website
I also watched a YouTube video on how to make a video game, and I coded the game Snake
Links:https://www.youtube.com/watch?v=bfRwxS5d0SI
- I watched a video and coded a game similar to the game google snake.
- I learned how to add colors in codes
from tkinter import *
import random
GAME_WIDTH = 700
GAME_HEIGHT = 700
SPEED = 50
SPACE_SIZE = 50
BODY_PARTS = 3
SNAKE_COLOR = "#00FF00"
FOOD_COLOR = "#FF0000"
BACKGROUND_COLOR = "#000000"
