Re: [Tkinter-discuss] Mapping Tcl's arguments to Python's arguments

2018-01-04 Thread Bryan Oakley
You cannot generalize tcl arguments. The tcl syntax is exceptionally simple: every statement starts with a command, and every "word" after that is an argument. A "word" can be just that - a single word, or a collection of characters inside quotes. It is up to each individual command as to how it i

[Tkinter-discuss] Mapping Tcl's arguments to Python's arguments

2018-01-03 Thread adil gourinda
Please can someone illuminate the differences between Tcl's arguments and Python's arguments? After reading a little about tcl/Tk I found that the arguments are written in the forms: 1) -option (the option's name alone is an argument) 2) -option value (with description of value's type) 3) value