[Tutor] intro book for python

2017-09-01 Thread Derek Smith
Hello! I am new to python coming from a Perl and Unix Admin background. I reviewed the site https://wiki.python.org/moin/IntroductoryBooks and would like to know which book(s) you all recommended for a newbie? Thank you! ___ Tutor maillist - Tuto

Re: [Tutor] intro book for python

2017-09-01 Thread Mats Wichmann
On 09/01/2017 07:42 AM, Derek Smith wrote: > > Hello! > > I am new to python coming from a Perl and Unix Admin background. I reviewed > the site https://wiki.python.org/moin/IntroductoryBooks and would like to > know which book(s) you all recommended for a newbie? Hi Derek, welcome to Python.

Re: [Tutor] intro book for python

2017-09-01 Thread Mats Wichmann
Okay, this reply makes it seem like I was really confused. My mail client did a weird thing, made it look to me like this question was on the Python webmaster list, where I also hang out - now it's resorted and I see it was already sent to tutor. Sorry about confusing anyone else :) And welcome!

Re: [Tutor] intro book for python

2017-09-01 Thread Raghunadh
Hello Derek, I would start with this book https://learnpythonthehardway.org Raghunadh On September 1, 2017, at 12:35 PM, Derek Smith wrote: Hello! I am new to python coming from a Perl and Unix Admin background. I reviewed the site https://wiki.python.org/moin/IntroductoryBooks and would

Re: [Tutor] intro book for python

2017-09-01 Thread Chris Warrick
I would recommend reading the official Python tutorial [0] This tutorial will explain the important parts of Python. It doesn’t spend too much time explaining programming basics though. My alternate recommendations include Think Python [1] or Automate the Boring Stuff with Python [2]. On 1 Septe

Re: [Tutor] intro book for python

2017-09-01 Thread Mats Wichmann
On 09/01/2017 01:08 PM, Chris Warrick wrote: > I would recommend reading the official Python tutorial [0] This > tutorial will explain the important parts of Python. It doesn’t spend > too much time explaining programming basics though. > > My alternate recommendations include Think Python [1] or

[Tutor] Oauth 2

2017-09-01 Thread Mohamed Sidik via Tutor
Hello all, can someone advice on any easy to follow resources of python and oauth 2. Thanks, Mo Sent from my Sony Xperia™ smartphone ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailm

Re: [Tutor] intro book for python

2017-09-01 Thread Sri Kavi
I would choose to learn from The Python Tutorial: https://docs.python.org/3/tutorial/ On Sep 1, 2017 23:06, "Derek Smith" wrote: Hello! I am new to python coming from a Perl and Unix Admin background. I reviewed the site https://wiki.python.org/moin/IntroductoryBooks and would like to know

[Tutor] Variable name containing '-'

2017-09-01 Thread ramakrishna reddy
Hi there, I am implementing a soap webservice where a method which has keyword parameter(named:abc-xyz) needs to be used to call third party app. eg: obj.method(abc-xyz=10) As python does not support '-' in variable names, I am a bit confused. I know in case of methods we can use getattr(self.ob

Re: [Tutor] Variable name containing '-'

2017-09-01 Thread Steven D'Aprano
On Fri, Sep 01, 2017 at 01:48:06PM -0700, ramakrishna reddy wrote: > Hi there, > > I am implementing a soap webservice where a method which has keyword > parameter(named:abc-xyz) needs to be used to call third party app. Just because your webservice offers a parameter called "foo" doesn't mean y