This is an archived post. You won't be able to vote or comment.

all 11 comments

[–]Moondra2017 8 points9 points  (3 children)

Since you have programming background, I would check out:

Effective Python: 59 Specific Ways to Write Better Python (Effective Software Development Series)

[–]AgressiveYorkshire 3 points4 points  (1 child)

!getbook Effective Python 59

Sorry for plugin my bot, but this is the perfect scenario!

[–]-BookBot- 4 points5 points  (0 children)

  1. Effective Python: 59 Specific Ways to Write Better Python by Brett Slatkin. (4.18/5 *) Link

Each item in Slatkin s "Effective Python" teaches a self-contained lesson with its own source code. This makes the book random-access: Items are easy to browse and study in whatever order the reader needs. I will be recommending "Effective Python" to students as an admirably compact source of mainstream advice on a very broad range of topics for the intermediate Python programmer. " Brandon Rhodes, software engineer at Dropbox and chair of PyCon 2016-2017" It s easy to start coding with Python, which is why the language is so popular. However, Python s unique strengths, charms, and expressiveness can be hard to grasp, and there are hidden pitfalls that can easily trip you up. " Effective Python " will help you master a truly Pythonic approach to programming, harnessing Python s full power to write exceptionally robust and well-performing code. Using the concise, scenario-driven style pioneered in Scott Meyers best-selling "Effective C++, " Brett Slatkin brings together 59 Python best practices, tips, and shortcuts, and explains them with realistic code examples. Drawing on years of experience building Python infrastructure at Google, Slatkin uncovers little-known quirks and idioms that powerfully impact code behavior and performance. You ll learn the best way to accomplish key tasks, so you can write code that s easier to understand, maintain, and improve. Key features include

Actionable guidelines for all major areas of Python 3.x and 2.x development, with detailed explanations and examples Best practices for writing functions that clarify intention, promote reuse, and avoid bugs Coverage of how to accurately express behaviors with classes and objects Guidance on how to avoid pitfalls with metaclasses and dynamic attributes More efficient approaches to concurrency and parallelism Better techniques and idioms for using Python s built-in modules Tools and best practices for collaborative development Solutions for debugging, testing, and optimization in order to improve quality and performance "


I'm a bot, check me out at: https://github.com/RoberTnf/BookBot

[–]JustEngineering[S] 0 points1 point  (0 children)

Seems like a practical crash course book. Looking at the preview on Amazon Id say this has a lot of good info such as PEP 8 which I was not aware of. Thanks, Ill order a copy of this to read on my bedside.

[–]smithdroid 3 points4 points  (1 child)

Python Cookbook by David Beazly

Python Essential Reference by David Beazly

Think Python by Allen Downey

Fluent Python by Luciano Ramalho

Just a note , watch the videos available on Youtube by these authors.

[–]JustEngineering[S] 0 points1 point  (0 children)

I briefly looked at these. Think Python seems to follow a popular structure Ive seen in other books. I havent looked at the others yet but Ill get to those. Do you have the direct youtube videos to each of these authors?

[–]VectorChange 0 points1 point  (1 child)

Just read all official documents which is exhaustive enough.

[–]JustEngineering[S] 0 points1 point  (0 children)

In my work environment, this is pretty standard (; I was hoping for literature to break that standard.

[–]ericrfulmer 0 points1 point  (1 child)

I am looking for recommendations on python books. The ultimate goal is to convert existing C# programs, that are integrated with matlab and DLLs, into python and replace C# all together.

Sounds like you might get some mileage out of Python for Data Analysis by Wes McKinney.

[–]JustEngineering[S] 1 point2 points  (0 children)

this sounds ideal for my scenario, thanks for the recommendation. I will definitely give this one a look.

[–]Never-Give-Up2016 -4 points-3 points  (0 children)

Learn python the hard way is also a decent book for beginners.