Re: Books for Python 3.7

2019-07-12 Thread Andrew Z
Then look at, for example, tutorialpoint.com for basic concepts - loops, data structures, objects . Pet- project- something you want to build. For example, my current petproject is a android based clock with a voice recognition. Use case - clock should understand 2-3 commands to set time 8nterv

ANN: Wing Python IDE 7.0.4 Released

2019-07-12 Thread Wingware
Wing Python IDE 7.0.4 has been released. Some of the highlights of this release include: Fix debugging notebooks with newer Jupyter versions Fix setting up a Django project with the default Python Executable Don't lose retained Debug I/O buffers after 60 seconds Avoid several inc

Re: Books for Python 3.7

2019-07-12 Thread RIchy M
On Friday, July 12, 2019 at 2:45:48 PM UTC-4, Andrew Z wrote: > Richy, > What specific part you consider hard? > If i may suggest, get a (pet) project as you read it. > > On Fri, Jul 12, 2019, 13:46 RIchy M wrote: > > > On Friday, July 12, 2019 at 1:00:01 PM UTC-4, MRAB wrote: > > > On 2019-07

Re: Books for Python 3.7

2019-07-12 Thread Andrew Z
Richy, What specific part you consider hard? If i may suggest, get a (pet) project as you read it. On Fri, Jul 12, 2019, 13:46 RIchy M wrote: > On Friday, July 12, 2019 at 1:00:01 PM UTC-4, MRAB wrote: > > On 2019-07-12 16:40, Terry Reedy wrote: > > > On 7/12/2019 11:27 AM, Richard Mok wrote:

Re: Books for Python 3.7

2019-07-12 Thread RIchy M
On Friday, July 12, 2019 at 1:00:01 PM UTC-4, MRAB wrote: > On 2019-07-12 16:40, Terry Reedy wrote: > > On 7/12/2019 11:27 AM, Richard Mok wrote: > > > >> It does not mention on the book which version of Python it is using. > > > > That would likely mean 2.x. Easy way to tell: > > 2.x has 'print

Re: Books for Python 3.7

2019-07-12 Thread MRAB
On 2019-07-12 16:40, Terry Reedy wrote: On 7/12/2019 11:27 AM, Richard Mok wrote: It does not mention on the book which version of Python it is using. That would likely mean 2.x. Easy way to tell: 2.x has 'print x' statements. 3.x has 'print(x)' function calles. I had a brief look online a

Re: super or not super?

2019-07-12 Thread Thomas Jollans
On 12/07/2019 16.12, Paulo da Silva wrote: > Hi all! > > Is there any difference between using the base class name or super to > call __init__ from base class? There is, when multiple inheritance is involved. super() can call different 'branches' of the inheritance tree if necessary. Let me demo

Re: Books for Python 3.7

2019-07-12 Thread Terry Reedy
On 7/12/2019 11:27 AM, Richard Mok wrote: It does not mention on the book which version of Python it is using. That would likely mean 2.x. Easy way to tell: 2.x has 'print x' statements. 3.x has 'print(x)' function calles. -- Terry Jan Reedy -- https://mail.python.org/mailman/listinfo/pyth

Re: Books for Python 3.7

2019-07-12 Thread Richard Mok
On Friday, July 12, 2019 at 11:04:57 AM UTC-4, sjm...@gmail.com wrote: > On Friday, July 12, 2019 at 11:37:08 AM UTC-3, mok...@gmail.com wrote: > > Can anyone help me. > > New to Python. > > Installed version 3.7 > > I purchased the "Python for Dummies" book But this book was written for an > > ol

Re: super or not super?

2019-07-12 Thread Rhodri James
On 12/07/2019 15:12, Paulo da Silva wrote: Hi all! Is there any difference between using the base class name or super to call __init__ from base class? class C1: def __init__(self): ... class C2(C1): def __init__(self): C1.__init__(self) or super

Re: Books for Python 3.7

2019-07-12 Thread sjmsoft
On Friday, July 12, 2019 at 11:37:08 AM UTC-3, mok...@gmail.com wrote: > Can anyone help me. > New to Python. > Installed version 3.7 > I purchased the "Python for Dummies" book But this book was written for an > older version of Python. > All the examples and samples don't work with version 3.7 >

Books for Python 3.7

2019-07-12 Thread mok888
Can anyone help me. New to Python. Installed version 3.7 I purchased the "Python for Dummies" book But this book was written for an older version of Python. All the examples and samples don't work with version 3.7 Can anyone direct me to which is the latest book to buy to properly learn Python. T

super or not super?

2019-07-12 Thread Paulo da Silva
Hi all! Is there any difference between using the base class name or super to call __init__ from base class? class C1: def __init__(self): ... class C2(C1): def __init__(self): C1.__init__(self) or super().__init__() ?? ... I have