from tkinter import *
import tkinter as tk
import time
import tkinter
from datetime import datetime
CAR_1 = 0
root=Tk()
root.title("игра")
photo_list = [
tk.PhotoImage(file="car1.png")]
# all buttons photo_list[CAR_1]
car_1 = Button(text = "",
image=photo_list[CAR_1],
width=100,
height=100,)
car_1.place(x = 0, y = 0)
root.mainloop()