Python Forum
Looking for a book to deepen my Python knowledge. - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: General (https://python-forum.io/forum-1.html)
+--- Forum: News and Discussions (https://python-forum.io/forum-31.html)
+--- Thread: Looking for a book to deepen my Python knowledge. (/thread-27868.html)



Looking for a book to deepen my Python knowledge. - SpongeB0B - Jun-25-2020

Hi everyone,

I'm looking for a book for deepen my Python knowledge.

a book (or web resources)that cover all the stock module (https://docs.python.org/3/py-modindex.html)

will be awesome !

Thanks


RE: Looking for a book to deepen my Python knowledge. - Larz60+ - Jun-25-2020

My suggestion would be Fluent Python, O'Reily: https://www.amazon.com/_/dp/1491946008?tag=oreilly20-20 $39.49
Used on Ebay: https://www.ebay.com/p/5005930559 $3.25


RE: Looking for a book to deepen my Python knowledge. - snippsat - Jun-25-2020

Link to The Python Standard Library.

One the best online Python 3 Module of the Week.
Also a book The Python 3 Standard Library by Example massive 1456 pages.
Starting to get a little old now,but still good Python Essential Reference.

As a advice learn to explore modules yourself live,here will a better REPL like ptpython or IPython helps.
A good editors with autocompletion/IntelliSense like Vs Code or PyChram also helps.
It's not possible to remember all this stuff.
Here a image with pypython and cmder,see that all method of lxml show up automatically,
then it's much more easy to choose and test out stuff.
[Image: VCVAP5.png]

There are modules in Standard Library that i mean there are not worth spending any time on like urllib,here have Requests taken over.
For me personalty also all HTML/XML parsing stuff in Standard Library,here is BeautifulSoup/lxml better.