import tkinter
root = tkinter.Tk()
root.title('Сторони горизонту')
root.geometry('300x300')
tkinter.Button(root, text='Північ', font=('Arial', 12)).pack(side=tkinter.TOP)
tkinter.Button(root, text='Південь', font=('Arial', 12)).pack(side=tkinter.BOTTOM)
tkinter.Button(root, text='Захід', font=('Arial', 12)).pack(side=tkinter.LEFT)
tkinter.Button(root, text='Схід', font=('Arial', 12)).pack(side=tkinter.RIGHT)
root.mainloop()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import tkinter
root = tkinter.Tk()
root.title('Сторони горизонту')
root.geometry('300x300')
tkinter.Button(root, text='Північ', font=('Arial', 12)).pack(side=tkinter.TOP)
tkinter.Button(root, text='Південь', font=('Arial', 12)).pack(side=tkinter.BOTTOM)
tkinter.Button(root, text='Захід', font=('Arial', 12)).pack(side=tkinter.LEFT)
tkinter.Button(root, text='Схід', font=('Arial', 12)).pack(side=tkinter.RIGHT)
root.mainloop()