oval in canvas

from tkinter import *
import time
gui = Tk()
gui.geometry("400x400")
gui.title("
First title")
canvas = Canvas(gui, width=1000,height=1200,bg='red')
canvas.pack()
ov1 = canvas.create_oval(25,25,60,60, fill='yellow')
gui.mainloop()

Comments

Popular posts from this blog

program that reads two numbers and an arithmetic operator and displays the computed result.

program to find the multiples of a number ( the divisor) out of given five numbers.