для цього завдання ми можемо використати модуль tkinter в Python для створення простого інтерфейсу з елементом керування "шкала", який дозволяє вибирати значення від 0 до 100. Ось код: import tkinter as tk
root = tk.Tk()
root.title("Піцерія")
# Create a label for pizza
lbl_pizza = tk.Label(root, text="Піца:").grid(row=0, column=0)
# Create a scale for pizza
scale_pizza = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_pizza.grid(row=0, column=1)
# Create a label for ice cream
lbl_ice_cream = tk.Label(root, text="Морозиво:").grid(row=1, column=0)
# Create a scale for ice cream
scale_ice_cream = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_ice_cream.grid(row=1, column=1)
# Create a label for cake
lbl_cake = tk.Label(root, text="Тістечко:").grid(row=2, column=0)
# Create a scale for cake
scale_cake = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_cake.grid(row=2, column=1)
# Create a label for juice
lbl_juice = tk.Label(root, text="Сік:").grid(row=3, column=0)
# Create a scale for juice
scale_juice = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_juice.grid(row=3, column=1)
root.mainloop()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
для цього завдання ми можемо використати модуль tkinter в Python для створення простого інтерфейсу з елементом керування "шкала", який дозволяє вибирати значення від 0 до 100. Ось код:
import tkinter as tk
root = tk.Tk()
root.title("Піцерія")
# Create a label for pizza
lbl_pizza = tk.Label(root, text="Піца:").grid(row=0, column=0)
# Create a scale for pizza
scale_pizza = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_pizza.grid(row=0, column=1)
# Create a label for ice cream
lbl_ice_cream = tk.Label(root, text="Морозиво:").grid(row=1, column=0)
# Create a scale for ice cream
scale_ice_cream = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_ice_cream.grid(row=1, column=1)
# Create a label for cake
lbl_cake = tk.Label(root, text="Тістечко:").grid(row=2, column=0)
# Create a scale for cake
scale_cake = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_cake.grid(row=2, column=1)
# Create a label for juice
lbl_juice = tk.Label(root, text="Сік:").grid(row=3, column=0)
# Create a scale for juice
scale_juice = tk.Scale(root, from_=0, to=100, orient=tk.HORIZONTAL, length=200)
scale_juice.grid(row=3, column=1)
root.mainloop()