Ответ:
import tkinter as tk
# Створюємо вікно
root = tk.Tk()
root.geometry('600x600')
root.title('Малюємо фігури')
# Створюємо полотно
canvas = tk.Canvas(root, width=600, height=600, bg='pink')
canvas.pack()
# Малюємо п'ятитикутник без згладжування
points = [150, 150, 300, 50, 450, 150, 400, 300, 200, 300]
canvas.create_polygon(points, outline='blue', fill='white', width=3, smooth=False)
# Малюємо п'ятитикутник зі згладжуванням
points = [150, 450, 300, 550, 450, 450, 400, 300, 200, 300]
canvas.create_polygon(points, outline='blue', fill='white', width=3, smooth=True)
# Запускаємо головний цикл вікна
root.mainloop()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
import tkinter as tk
# Створюємо вікно
root = tk.Tk()
root.geometry('600x600')
root.title('Малюємо фігури')
# Створюємо полотно
canvas = tk.Canvas(root, width=600, height=600, bg='pink')
canvas.pack()
# Малюємо п'ятитикутник без згладжування
points = [150, 150, 300, 50, 450, 150, 400, 300, 200, 300]
canvas.create_polygon(points, outline='blue', fill='white', width=3, smooth=False)
# Малюємо п'ятитикутник зі згладжуванням
points = [150, 450, 300, 550, 450, 450, 400, 300, 200, 300]
canvas.create_polygon(points, outline='blue', fill='white', width=3, smooth=True)
# Запускаємо головний цикл вікна
root.mainloop()