On 4/9/2019 4:24 PM, Christian Gollwitzer wrote:
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

Or the pythonized version
http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/index.html

--
Terry Jan Reedy

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to