Вопрос задан 16.06.2023 в 16:30. Предмет Информатика. Спрашивает Старцев Александр.

5. Складіть програму, після запуску якої на екрані з'являється ві- кно, де послідовно розміщено 4

різнокольорові кнопки з назвами кольорів та різними розмірами кнопок за шириною.
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Еремеева Алина.

Ответ:

Объяснение:

import tkinter

from tkinter import TOP, BOTTOM, RIGHT, LEFT

window=tkinter.Tk()

window.title("Four buttons")

window.geometry ("600x400+200+80")

Button1=tkinter.Button(window, text="yellow button", width=10,bg='yellow', height=1, font="Arial 14")

Button2=tkinter.Button(window, text="red button", width=20,bg='red', height=2, font="Arial 14")

Button3=tkinter.Button(window, text="green button", width=15,bg='green', height=3, font="Arial 14")

Button4=tkinter.Button(window, text="blue button", width=10,bg='blue', height=4, font="Arial 14")

Button1.pack(side=BOTTOM)

Button2.pack(side=TOP)

Button3.pack(side=RIGHT)

Button4.pack(side=LEFT)

window.mainloop()

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

Program to Display Colored Buttons with Different Sizes

Here's a program that, when executed, will display a window with four different colored buttons, each with a unique color name and varying button widths:

```python import tkinter as tk

def create_button(color, width): button = tk.Button(root, text=color, bg=color, width=width) button.pack()

root = tk.Tk()

# Create buttons with different colors and widths create_button("Red", 10) create_button("Blue", 15) create_button("Green", 20) create_button("Yellow", 25)

root.mainloop() ```

This program uses the `tkinter` library in Python to create a graphical user interface (GUI) window. The `create_button` function is defined to simplify the process of creating buttons with different colors and widths. The `tk.Button` class is used to create each button, with the `text` parameter set to the color name, the `bg` parameter set to the color itself, and the `width` parameter set to the desired button width.

The `root` object represents the main window of the GUI. The `create_button` function is called four times, each with a different color and width specified. The buttons are then packed into the window using the `pack` method.

When you run this program, a window will appear with four buttons, each displaying a different color and having a different width.

Please note that the specific colors and widths used in the program can be modified according to your preferences.

0 0

Похожие вопросы

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос