#754 in Computers & technology books

Reddit mentions of Core Python Applications Programming (3rd Edition) (Core Series)

Sentiment score: 4
Reddit mentions: 6

We found 6 Reddit mentions of Core Python Applications Programming (3rd Edition) (Core Series). Here are the top ones.

Core Python Applications Programming (3rd Edition) (Core Series)
Buying options
View on Amazon.com
or
Specs:
Height9.25 Inches
Length7.25 Inches
Number of items1
Weight2.4030386558 Pounds
Width1.25 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 6 comments on Core Python Applications Programming (3rd Edition) (Core Series):

u/jelloeater85 · 3 pointsr/Python

Core Python Applications Programming is a great book. Touches on a TON of different technologies and the examples are very easy to follow.

u/il_doc · 2 pointsr/ItalyInformatica

personalmente mi sentirei di consigliare "core python programming" di wesley chun, io ho la seconda edizione, l'ho trovato molto ben strutturato.

poi c'è il mai-abbastanza-linkato https://learnpythonthehardway.org/python3/ (un tempo era gratis, magari online si trova ancora da qualche parte)

per fare qualche esercizio puoi buttarti su projecteuler.net

come ide uso vs code, che visto che è praticamente solo un editor di testo (plugin a parte) mi vien bene per qualsiasi cosa, senza andare su roba troppo specifica come pycharm

come step successivo, o perchè no, anche parallelo, magari potresti cominciare a dare un'occhiata a react o angular, da usare per esempio come frontend di flask o django...

u/c3534l · 2 pointsr/learnpython

I get quite a lot from books, reading them, working through problems when I need to. But if I could go back in time and tell myself which books I should read, I'd go with (in order):

u/drivelous · 2 pointsr/Python

For me, it's Core Python Applications Programming by Wesley Chun. Just check out the table of contents. He gives you insight into seeing the power of Python and allows you to explore what else you want to do.

I think docs are cool and all, but project based learning is what I like best and he goes line by line through working code samples. For example, in chapter 7 or 8 (I forget) he codes a functioning web crawler. I've been sticking print statements everywhere to see what works and why and he explains things really well. I'm skipping the first part of the book and diving directly into the web development portion, but the stuff he has in there about GUI programming with Tkinter, Multithreading, and Network Programming all seem really cool.

u/AtomicWedgy · 2 pointsr/learnpython

If you're looking for an intro to programming in Python I would suggest Introduction to Computation and Programming Using Python For a general language reference Python Essential Refernce For an introduciton to the included modules The Python Standard Library by example which includes a lot of simple code examples. The book Core Python Application Programming is a great subset of the above books with less over all coverage but greater detail in the example code. And last but not least, for advanced algorithm info Annotated Algorithms in Python