podennnny.py 728 B

12345678910111213141516171819202122232425262728
  1. import tkinter as tk
  2. from tkinter import messagebox
  3. def calculate_grades():
  4. grades = [5, 4, 3, 2, 3, 4, 5, 4, 5]
  5. count_fives = grades.count(5)
  6. result_text = f"Количество пятёрок по информатике: {count_fives}"
  7. messagebox.showinfo("Результат", result_text)
  8. root = tk.Tk()
  9. root.title("Подсчёт пятёрок")
  10. root.geometry("300x150")
  11. label = tk.Label(root, text="Нажмите кнопку, чтобы посчитать пятёрки:")
  12. label.pack(pady=10)
  13. button = tk.Button(
  14. root,
  15. text="Посчитать",
  16. command=calculate_grades,
  17. padx=20,
  18. pady=10,
  19. bg="lightblue",
  20. font=("Arial", 12)
  21. )
  22. button.pack(pady=20)
  23. root.mainloop()