Re: [Tutor] is there a graphics library for common tkinter Button functions?

2019-03-20 Thread Alan Gauld via Tutor
On 20/03/19 22:43, Chris Roy-Smith wrote: Is there a "graphics library" of common button uses? that is things like forward record, back record, 1st record, last record, printer, save and the likes. The short answer is no. But you can assign any bitmap image to a button. (You can use other form

[Tutor] is there a graphics library for common tkinter Button functions?

2019-03-20 Thread Chris Roy-Smith
Hi, Is there a "graphics library" of common button uses? that is things like forward record, back record, 1st record, last record, printer, save and the likes. I don't have very artistic abilities, so would prefer to save making my own library. Thank you Chris Roy-Smith _

Re: [Tutor] Help

2019-03-20 Thread Alan Gauld via Tutor
On 20/03/19 14:30, Eric Oh Yeah Yeah wrote: How do I make Python 3 pick a random variable out of a set of variables I give it? There are several options but if you look in the random module you should find one that suits your particular needs. choice() or randrange() may be good options. If

[Tutor] Help

2019-03-20 Thread Eric Oh Yeah Yeah
How do I make Python 3 pick a random variable out of a set of variables I give it? ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] removing xml elements with ElementTree

2019-03-20 Thread Peter Otten
street.swee...@mailworks.org wrote: > An opportunity to work in Python, and the necessity of working with some > XML too large to visualize, got me thinking about an answer Alan Gauld had > written to me a few years ago > (https://mail.python.org/pipermail/tutor/2015-June/105810.html). I have > a

[Tutor] removing xml elements with ElementTree

2019-03-20 Thread street . sweeper
An opportunity to work in Python, and the necessity of working with some XML too large to visualize, got me thinking about an answer Alan Gauld had written to me a few years ago (https://mail.python.org/pipermail/tutor/2015-June/105810.html). I have applied that information in this script, but