Học Python qua Game Python
https://www.youtube.com/watch?v=doxuKKoJnpA from tkinter import * from time import sleep from PIL import ImageTk,Image img=[0,0,0] tk=Tk() tk.title(“Game của tui”) tk.resizable(0,0) can=Canvas(tk,width=600,height=300,background=”white”) can.pack() img[0]=ImageTk.PhotoImage(Image.open(“photo/dragon-0.jpg”)) img[1]=ImageTk.PhotoImage(Image.open(“photo/may.jpg”)) img[2]=ImageTRead More…