[Tkinter-discuss] Accelerator keys cross-platform

Michael Lange klappnase at web.de
Sun Dec 27 07:31:09 EST 2015


Hi,

On Sat, 26 Dec 2015 10:47:47 -0500
Kevin Walzer <kw at codebykevin.com> wrote:

> On 12/26/15 9:42 AM, Kevin Walzer wrote:
> > window.bind('<Command-or-control-W'>, lambda event: window.hide())
> I found the string formatter call, cf:
> 
>  >>> mod = 'Control'
>  >>> print("<{}-f>".format(mod))
> <Control-f>

or simply

>>> mod = 'Control'
>>> print('<%s-f>' % mod)
<Control-f>
>>> 

Regards

Michael

.-.. .. ...- .   .-.. --- -. --.   .- -. -..   .--. .-. --- ... .--. . .-.

	"The combination of a number of things to make existence
worthwhile." "Yes, the philosophy of 'none,' meaning 'all.'"
		-- Spock and Lincoln, "The Savage Curtain", stardate
                   5906.4


More information about the Tkinter-discuss mailing list