Re: which book to read next??

2014-04-21 Thread Emile van Sebille

On 4/21/2014 7:13 AM, lee wrote:


4, the python standard library by examples


I'd take this on -- it provides a comprehensive overview of what's where 
in the standard library which you'll likely use a lot.



which one is suitable for me??


That we can't answer.  :)

Emile


--
https://mail.python.org/mailman/listinfo/python-list


which book to read next??

2014-04-21 Thread lee
Thanks for all of the respones, Writing a game in pygame is a good idea. Thank 
you! -- 发自 Android 网易邮箱-- 
https://mail.python.org/mailman/listinfo/python-list


Re: which book to read next??

2014-04-21 Thread Mark Lawrence

On 21/04/2014 17:22, Chris Angelico wrote:

On Tue, Apr 22, 2014 at 2:20 AM, Tim Chase
 wrote:

Problem: I'm bored
Solution: write yourself a game in pygame


Alternative solution: Join python-ideas as well as python-list, and
pledge to read *every* post.

ChrisA



Alternative alternative solution:  Join python-bugs as well as 
python-list, and pledge to help out on *every* issue seen :)


--
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.


Mark Lawrence

---
This email is free from viruses and malware because avast! Antivirus protection 
is active.
http://www.avast.com


--
https://mail.python.org/mailman/listinfo/python-list


Re: which book to read next??

2014-04-21 Thread Chris Angelico
On Tue, Apr 22, 2014 at 2:20 AM, Tim Chase
 wrote:
> Problem: I'm bored
> Solution: write yourself a game in pygame

Alternative solution: Join python-ideas as well as python-list, and
pledge to read *every* post.

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: which book to read next??

2014-04-21 Thread Tim Chase
On 2014-04-21 22:13, lee wrote:
> Hi, I have read the book 'a byte of python' and now I want to read
> another book. But I just get confused about which one to read next.
> There is a book list below: 1, pro python
> 2, python algorithms
> 3, python cookbook
> 4, the python standard library by examples
> which one is suitable for me??
> Or I need to start a project with pygame or flask?

Once you've got the basics (which it seems like you do have now), I'd
find a problem you have and use Python to solve it.  E.g.:

Problem: I'm bored
Solution: write yourself a game in pygame

P: I want to create a website to do X
S: Use django/flask to do such

P: I want to answer some questions about this set of data
S: write some Python code to parse the data & produce answers

P: I'm poor
S: use Python to solve problems for other people and have them pay you


You can keep reading books, but if you don't have something to
actually create from using this knowledge, it's a somewhat worthless
academic exercise.

-tkc



-- 
https://mail.python.org/mailman/listinfo/python-list


Re: which book to read next??

2014-04-21 Thread Joel Goldstick
On Mon, Apr 21, 2014 at 11:41 AM, Alan Gauld wrote:

> On 21/04/14 15:13, lee wrote:
>
>> Hi, I have read the book 'a byte of python' and now I want to read
>> another book. But I just get confused about which one to read next.
>> There is a book list below:
>> 1, pro python
>> 2, python algorithms
>> 3, python cookbook
>> 4, the python standard library by examples
>> which one is suitable for me??
>>
>
> We would need to know a lot more about you.
> What is your skill level in programming (as opposed to python)?
> What are your areas of interest?
> What is your preferred teaching style? In depth background
> detail or surface level but hands-on style?
>
> Book choice is always a very personal thing.
>
>
> --
> Alan G
> Author of the Learn to Program web site
> http://www.alan-g.me.uk/
> http://www.flickr.com/photos/alangauldphotos
>
> --
> https://mail.python.org/mailman/listinfo/python-list
>

Don't forget to look at the python.org site:
https://wiki.python.org/moin/BeginnersGuide

-- 
Joel Goldstick
http://joelgoldstick.com
-- 
https://mail.python.org/mailman/listinfo/python-list


Re: which book to read next??

2014-04-21 Thread Alan Gauld

On 21/04/14 15:13, lee wrote:

Hi, I have read the book 'a byte of python' and now I want to read
another book. But I just get confused about which one to read next.
There is a book list below:
1, pro python
2, python algorithms
3, python cookbook
4, the python standard library by examples
which one is suitable for me??


We would need to know a lot more about you.
What is your skill level in programming (as opposed to python)?
What are your areas of interest?
What is your preferred teaching style? In depth background
detail or surface level but hands-on style?

Book choice is always a very personal thing.


--
Alan G
Author of the Learn to Program web site
http://www.alan-g.me.uk/
http://www.flickr.com/photos/alangauldphotos

--
https://mail.python.org/mailman/listinfo/python-list


which book to read next??

2014-04-21 Thread lee
Hi, I have read the book 'a byte of python' and now I want to read another 
book. But I just get confused about which one to read next.
There is a book list below:
1, pro python
2, python algorithms
3, python cookbook
4, the python standard library by examples
which one is suitable for me??
Or I need to start a project with pygame or flask?
Thanks for your help!



-- 
https://mail.python.org/mailman/listinfo/python-list


Re: Which book is the best?

2012-10-16 Thread Demian Brecht

On 10/15/2012 9:27 PM, 老爷 wrote:

I have strong c++ development experience.  But now I want to study the
python to do some windows setting task, such as editing file, changing
the system setting, doing some network processing.  Please help me which
book is the best?
Thanks.




If you're already a seasoned developer, nothing beats the official 
Python docs (http://python.org/doc/). I find most books to be filled 
with unnecessary narratives. The Python documentation is relatively 
terse and very well organized. As such, it'll get you off to the races 
in no time.


One of the many beautiful things about Python is the interactive help:

$python
>>> import re
>>> help(re)

You may also want to take a read through this:

$python
>>> import this

--
http://mail.python.org/mailman/listinfo/python-list


Re: Which book is the best?

2012-10-16 Thread Marco Nawijn
On Tuesday, October 16, 2012 6:41:29 AM UTC+2, David Hutto wrote:
> On Tue, Oct 16, 2012 at 12:27 AM, 老爷  wrote:
> 
> > I have strong c++ development experience.  But now I want to study the
> 
> > python to do some windows setting task, such as editing file, changing the
> 
> > system setting, doing some network processing.  Please help me which book is
> 
> > the best?
> 
> >
> 
> >
> 
> Definitely command line apps/command line usage.
> 
> 
> 
>  I could recommend google searches, but use the calls to the OS, and
> 
> you can accomplish a good bit of things.
> 
> 
> 
> 
> 
> -- 
> 
> Best Regards,
> 
> David Hutto
> 
> CEO: http://www.hitwebdevelopment.com

Hi,

Although I agree with the fact the working in the interactive interpreter (may 
I recommend IPython for this) is definitely an efficient way of exploring the 
Python world, I also liked alot the Python Essential Reference (4th edition). 
Since you already understand how to program, the Python essential reference 
quickly guides you through Python language and the standard library.

Regards,

Marco
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: Which book is the best?

2012-10-15 Thread Dwight Hutto
On Tue, Oct 16, 2012 at 12:27 AM, 老爷  wrote:
> I have strong c++ development experience.  But now I want to study the
> python to do some windows setting task, such as editing file, changing the
> system setting, doing some network processing.  Please help me which book is
> the best?
>
>
Definitely command line apps/command line usage.

 I could recommend google searches, but use the calls to the OS, and
you can accomplish a good bit of things.


-- 
Best Regards,
David Hutto
CEO: http://www.hitwebdevelopment.com
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-16 Thread Ashraf Fouda
I recommend this book :- "beginning python from novice to professional"

On Wed, May 9, 2012 at 4:13 PM, Miki Tebeka  wrote:

> > I am going to learn python for some plot issues. which book or sources,
> do you recommend please?
> The tutorial is pretty good if you already know how to program.
> I also heard a lot of good things on "Python Essential Reference".
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
yours
Ashraf Fouda
Software Engineer
*
*
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-14 Thread Mark Lawrence

On 10/05/2012 10:58, d.po...@gmail.com wrote:

On Wednesday, May 9, 2012 7:13:54 AM UTC-7, Miki Tebeka wrote:

I am going to learn python for some plot issues. which book or sources, do you 
recommend please?

The tutorial is pretty good if you already know how to program.
I also heard a lot of good things on "Python Essential Reference".


Thanks.
Could you please pass the line for tutorial?


google for python tutorial - IIRC first hit is to the tutorial for 
version 2.7.3


--
Cheers.

Mark Lawrence.

--
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-14 Thread darnold
On May 10, 4:58 am, d.po...@gmail.com wrote:
> On Wednesday, May 9, 2012 7:13:54 AM UTC-7, Miki Tebeka wrote:
> > > I am going to learn python for some plot issues. which book or sources, 
> > > do you recommend please?
> > The tutorial is pretty good if you already know how to program.
> > I also heard a lot of good things on "Python Essential Reference".
>
> Thanks.
> Could you please pass the line for tutorial?

i believe that would be the tutorial at http://docs.python.org/tutorial/
.
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-14 Thread d . poreh
On Wednesday, May 9, 2012 7:13:54 AM UTC-7, Miki Tebeka wrote:
> > I am going to learn python for some plot issues. which book or sources, do 
> > you recommend please?
> The tutorial is pretty good if you already know how to program.
> I also heard a lot of good things on "Python Essential Reference".

Thanks.
Could you please pass the line for tutorial?
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-14 Thread Miki Tebeka
> I am going to learn python for some plot issues. which book or sources, do 
> you recommend please?
The tutorial is pretty good if you already know how to program.
I also heard a lot of good things on "Python Essential Reference".

-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-09 Thread james hedley
On Tuesday, 8 May 2012 19:16:01 UTC+1, d.p...@gmail.com  wrote:
> folks 
> hi, 
> I am going to learn python for some plot issues. which book or sources, do 
> you recommend please?
> Cheers,
> Dave

I started with Dive Into Python. It's getting old now but for me it really 
catches the spirit of Python programming; clean, readable, and idiomatic.

Plus it's fairly concise itself and emphasises the standard libraries.

If you get stuck, obviously just search, but there is a lot of good info
on Stack Overflow particularly.

James
-- 
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-08 Thread Mark Lawrence

On 08/05/2012 19:16, d.po...@gmail.com wrote:

folks
hi,
I am going to learn python for some plot issues. which book or sources, do you 
recommend please?
Cheers,
Dave


matplotlib - google and yee shall find.

--
Cheers.

Mark Lawrence.

--
http://mail.python.org/mailman/listinfo/python-list


Re: which book?

2012-05-08 Thread Alec Taylor
plot issues?

On Wed, May 9, 2012 at 4:16 AM,   wrote:
> folks
> hi,
> I am going to learn python for some plot issues. which book or sources, do 
> you recommend please?
> Cheers,
> Dave
> --
> http://mail.python.org/mailman/listinfo/python-list
-- 
http://mail.python.org/mailman/listinfo/python-list


which book?

2012-05-08 Thread d . poreh
folks 
hi, 
I am going to learn python for some plot issues. which book or sources, do you 
recommend please?
Cheers,
Dave
-- 
http://mail.python.org/mailman/listinfo/python-list