Please help me to make my third oval round... I am changing values since hour but no luck:((
import tkinter as tk
root = Tk()
canvas = tk.Canvas(root, width=52, height=160)
canvas.place(x=0, y=10)
oval_red = canvas.create_oval(10, 5, 50, 50, fill="white")
oval_yellow = canvas.create_oval(10, 100, 50, 55, fill="white")
oval_green = canvas.create_oval(10, 205, 60, 100, fill="white")
canvas.itemconfig(oval_red, fill="red")
root.mainloop()
[1]: https://i.sstatic.net/u5xHM.png
