[Tutor] Tkinter entry box text changed event

2017-04-09 Thread Phil
Again, thank you for reading this. I would like a function to be called when I enter text and then tab to the next entry box. I've been trying to follow the answers to similar questions in Stack Overflow but I've become hopelessly confused because of the different answers given to seemingly the

Re: [Tutor] (no subject)

2017-04-09 Thread Alan Gauld via Tutor
On 09/04/17 11:42, shubham goyal wrote: > Hello, I am a c++ programmer and wants to learn python for internship > purposes. How can i learn the advanced python fast mostly data science > packages, I know basic python. There are tutorials on most things. But it depends on what you mean by advanced

Re: [Tutor] (no subject)

2017-04-09 Thread Mats Wichmann
On 04/09/2017 04:42 AM, shubham goyal wrote: > Hello, I am a c++ programmer and wants to learn python for internship > purposes. How can i learn the advanced python fast mostly data science > packages, I know basic python. Try an internet search? Don't mean to be snide, but there are lots of reso

Re: [Tutor] What would be good use cases for the enum module?

2017-04-09 Thread boB Stepp
On Sat, Apr 8, 2017 at 11:13 PM, Steven D'Aprano wrote: > On Sat, Apr 08, 2017 at 10:00:21PM -0500, boB Stepp wrote: >> After reading some discussion on the Python main list about the enum >> module and some suggested changes, I thought I would read the docs on >> it at >> https://docs.python.org/

Re: [Tutor] downloading modules for both python 2 and 3

2017-04-09 Thread Mats Wichmann
On 04/09/2017 02:20 AM, Peter Otten wrote: > Benjamin Fishbein wrote: > >> I’ve been writing an app using Kivy, and now I want to test it out on an >> iPhone. However, this can currently only be done in Python 2. >> https://kivy.org/docs/guide/packaging-ios.html >>

Re: [Tutor] What would be good use cases for the enum module?

2017-04-09 Thread Alan Gauld via Tutor
On 09/04/17 13:58, Mats Wichmann wrote: > All of these can of course be done without enums. So the extra benefit > of an enum is that the set is closed (immutable) and requires > uniqueness: picking some other value will be an error, Indeed, good catch. The value of an enum over an integer is t

[Tutor] (no subject)

2017-04-09 Thread shubham goyal
Hello, I am a c++ programmer and wants to learn python for internship purposes. How can i learn the advanced python fast mostly data science packages, I know basic python. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription optio

Re: [Tutor] What would be good use cases for the enum module?

2017-04-09 Thread Mats Wichmann
On 04/09/2017 01:54 AM, Alan Gauld via Tutor wrote: > On 09/04/17 04:00, boB Stepp wrote: > >> understandable to me, but I am having difficulty imagining where I >> might want to use these features. >> > > Steven has given the basics, here are a few more real world examples: > > Any kind of stat

Re: [Tutor] downloading modules for both python 2 and 3

2017-04-09 Thread Peter Otten
Benjamin Fishbein wrote: > I’ve been writing an app using Kivy, and now I want to test it out on an > iPhone. However, this can currently only be done in Python 2. > https://kivy.org/docs/guide/packaging-ios.html > But when I import kivy in > Python

Re: [Tutor] What would be good use cases for the enum module?

2017-04-09 Thread Alan Gauld via Tutor
On 09/04/17 04:00, boB Stepp wrote: > understandable to me, but I am having difficulty imagining where I > might want to use these features. > Steven has given the basics, here are a few more real world examples: Any kind of status value: (open,closed,opening, closing,locked) - control valve (

[Tutor] downloading modules for both python 2 and 3

2017-04-09 Thread Benjamin Fishbein
I’ve been writing an app using Kivy, and now I want to test it out on an iPhone. However, this can currently only be done in Python 2. https://kivy.org/docs/guide/packaging-ios.html But when I import kivy in Python2, I get an ImportError. ImportErr