Python >> Tutoriel Python >  >> Python GUI >> Tkinter GUI

Python 3 Tkinter Snake and Ladder Game Application de bureau GUI

Application de bureau de l'interface graphique du jeu Python 3 Tkinter Snake and Ladder

from userInterface import *
        
def main():
    master = Tk()
    master.title("Snake and Ladder")
    master.geometry("850x600")
    img = PhotoImage( file = "lenna.gif")
    x = Display(master,img)
    master.mainloop()

main()