I noticed that the Tk's option-value are translated in Tkinter in two forms:
Tk ---: optionvalue
Python 1st form: option = tkinter.VALUE
2nd form: option = 'value'
The 2nd form is closer to Tk's syntax but when it was introduced in Tkinter
because it is the 1
Are you asking a question, or just mentioning an observation.
Personally I find the use of tkinter constants a bit silly. I see no point
in using something like tkinter.END instead of "end". I always recommend
that people learn to use the string form rather than the constant.
On Wed, Nov 22, 201