Начинались пятнашки,которые я писал во время первого психоза вот так.Только были они написаны на langmf.
from tkinter import *
from tkinter import ttk
root = Tk()
root.title("Пятнашки")
root.geometry("500x500")
btn1 = Button(text="1")
btn1.place(x=0,y=0)
btn2 = Button(text="2")
btn2.place(x=50,y=0)
btn3 = Button(text="3")
btn3.place(x=100,y=0)
btn4 = Button(text="4")
btn4.place(x=150,y=0)
btn5 = Button(text="5")
btn5.place(x=0,y=50)
btn6 = Button(text="6")
btn6.place(x=50,y=50)
btn7 = Button(text="7")
btn7.place(x=100,y=50)
btn8 = Button(text="8")
btn8.place(x=150,y=50)
btn9 = Button(text="9")
btn9.place(x=0,y=100)
btn10 = Button(text="10")
btn10.place(x=50,y=100)
btn11 = Button(text="11")
btn11.place(x=100,y=100)
btn12 = Button(text="12")
btn12.place(x=150,y=100)
btn13 = Button(text="13")
btn13.place(x=0,y=150)
btn14 = Button(text="14")
btn14.place(x=50,y=150)
btn15 = Button(text="15")
btn15.place(x=100,y=150)
btn16 = Button(text="*")
btn16.place(x=150,y=150)
root.mainloop()
|