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)

Terry Reedy tjreedy at udel.edu
Tue Apr 9 17:42:18 EDT 2019


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




More information about the Python-list mailing list