import tkinter as tk
from tkinter import messagebox
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"
class Snake:
pass
class Food:
pass
def next_turn():
pass
def change_direction(new_direction):
window = Tk()
window.title("Snake")
window.resizable(False, False)
score = 0
direction = "down"
label = label(windowm text="score:{}". format(score), font="(consolas)", 40)
label.pack()
window.mainloop()
I really am confused as im only 5 minutes in the tutorial.