Ответ:
import tkinter
window = tkinter.Tk()
window.geometry ('300x150')
button1 = tkinter.Button (window, text='Красный', width=11,
bg='red', fg='white')
button1.pack()
button2 = tkinter.Button (window, text='Жёлтый', width=19,
bg='yellow', fg='black')
button2.pack()
button3 = tkinter.Button (window, text='Синий', width=27,
bg='blue', fg='white')
button3.pack()
button4 = tkinter.Button (window, text='Фиолетовый', width=35,
bg='purple', fg='white')
button4.pack()
window.mainloop()
Объяснение:
Основные свойства класса Button, которым представлены кнопки в tkinter:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import tkinter
window = tkinter.Tk()
window.geometry ('300x150')
button1 = tkinter.Button (window, text='Красный', width=11,
bg='red', fg='white')
button1.pack()
button2 = tkinter.Button (window, text='Жёлтый', width=19,
bg='yellow', fg='black')
button2.pack()
button3 = tkinter.Button (window, text='Синий', width=27,
bg='blue', fg='white')
button3.pack()
button4 = tkinter.Button (window, text='Фиолетовый', width=35,
bg='purple', fg='white')
button4.pack()
window.mainloop()
Объяснение:
Основные свойства класса Button, которым представлены кнопки в tkinter: