Find all types of basic coding here.
from tkinter import * app=Tk() app.title("Circle") canvas=Canvas(app) canvas.pack() canvas.config(width=400,height=400) canvas.create_oval(50, 50, 200, 200, outline="black", fill="", width=5) app.mainloop()
No comments:
Post a Comment