What is a, b, c, and d in: rect1 = drawing.create_rectangle(a, b, c, d) and circle1 = drawing.create_oval(a, b, c, d)

Christian Gollwitzer auriocus at gmx.de
Tue Apr 9 16:24:11 EDT 2019


Am 09.04.19 um 21:57 schrieb CrazyVideoGamez:
> What is a, b, c, and d in:
> from tkinter import *
> window = Tk()
> drawing = Canvas(window, height=500, width=500)
> rectangle = drawing.create_rectangle(a, b, c, d)
> and:
> circle = drawing.create_oval(a, b, c, d)
> ???

Look it up in the original Tk documentation:

https://www.tcl.tk/man/tcl8.6/TkCmd/canvas.htm#M155
https://www.tcl.tk/man/tcl8.6/TkCmd/canvas.htm#M150

	Christian




More information about the Python-list mailing list