tkinter draw squaer
canvas.create_rectangle(30, 10, 120, 80,
outline="#fb0", fill="#fb0")
tkinter draw squaer
canvas.create_rectangle(30, 10, 120, 80,
outline="#fb0", fill="#fb0")
tkinter draw circle
from tkinter import *
root = Tk()
myCanvas = Canvas(root)
myCanvas.pack()
def create_circle(x, y, r, canvasName): #center coordinates, radius
x0 = x - r
y0 = y - r
x1 = x + r
y1 = y + r
return canvasName.create_oval(x0, y0, x1, y1)
create_circle(100, 100, 20, myCanvas)
create_circle(50, 25, 10, myCanvas)
root.mainloop()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us