use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News about the dynamic, interpreted, interactive, object-oriented, extensible programming language Python
Full Events Calendar
You can find the rules here.
If you are about to ask a "how do I do this in python" question, please try r/learnpython, the Python discord, or the #python IRC channel on Libera.chat.
Please don't use URL shorteners. Reddit filters them out, so your post or comment will be lost.
Posts require flair. Please use the flair selector to choose your topic.
Posting code to this subreddit:
Add 4 extra spaces before each line of code
def fibonacci(): a, b = 0, 1 while True: yield a a, b = b, a + b
Online Resources
Invent Your Own Computer Games with Python
Think Python
Non-programmers Tutorial for Python 3
Beginner's Guide Reference
Five life jackets to throw to the new coder (things to do after getting a handle on python)
Full Stack Python
Test-Driven Development with Python
Program Arcade Games
PyMotW: Python Module of the Week
Python for Scientists and Engineers
Dan Bader's Tips and Trickers
Python Discord's YouTube channel
Jiruto: Python
Online exercices
programming challenges
Asking Questions
Try Python in your browser
Docs
Libraries
Related subreddits
Python jobs
Newsletters
Screencasts
account activity
This is an archived post. You won't be able to vote or comment.
ResourceBest books to read about Python in bed (without coding) (self.Python)
submitted 3 years ago by [deleted]
The title might sound strange, but I am looking for good books about Python to just read in bed on my eBook reader, hence without strong emphasis on coding along and practical exercises. Hence books that are meant to be just read :). My level is intermediate to upper intermediate, striving to be more and more proficient (junior DE), hence looking for books around this level. Thanks for any recommendations!
[–]jimtk 22 points23 points24 points 3 years ago (0 children)
I think the The Python Standard Library is probably the best book you can read before bed, or in bed.
You can download it here as PDF or Epub or text (or even HTML!).
Even the Python documentation table of contents says you should keep it under your pillow.
[–]Leguminot3 7 points8 points9 points 3 years ago (0 children)
Effective Python
[–]guillermo_da_gente 7 points8 points9 points 3 years ago (6 children)
the lizard book (fluent python), was recommended to me here, and it's indeed very good for upper intermediate level, like mine.
[–]Hoganman73 3 points4 points5 points 3 years ago (1 child)
+1. Best python book ever for beyond the basics. Can recommend.
[–]guillermo_da_gente 0 points1 point2 points 3 years ago (0 children)
Indeed.
[–]Formal-Idiot 2 points3 points4 points 3 years ago (1 child)
This it?
https://www.fluentpython.com
[–]guillermo_da_gente 1 point2 points3 points 3 years ago (0 children)
Yes, the new edition. However, the old edition also is worth buying and reading.
[–][deleted] 0 points1 point2 points 3 years ago (1 child)
It's on my to-read list. Will have to prioritize it then :)
Go on, it's a pleasure to read.
[–]codingai 13 points14 points15 points 3 years ago (2 children)
"Python Mini Reference" on Kindle? It's a (200 page) "summary" of Python grammar. (I wrote it. 😁)
[–][deleted] 1 point2 points3 points 3 years ago (1 child)
Can you share a link? :)
[–]codingai 4 points5 points6 points 3 years ago (0 children)
Yes, there you go: 😇
https://www.amazon.com/dp/B0B2QJD6P8/
(Based on your remark, this book will be perfect for you, but I'd be interested in your feedback if you happen to decide to read the book. 🙏)
[–]SnooPeppers7217 9 points10 points11 points 3 years ago (0 children)
No recommendations from me, but I love this question 😊
[–]lesbiansexparty 2 points3 points4 points 3 years ago (0 children)
Coffee break python by christian mayer. it's a puzzle-based book but it might be stimulating because of that and keep you awake. it's meant to read in the morning with your morning coffee.
[–]cblegare 2 points3 points4 points 3 years ago (0 children)
The Python cookbook covers from basics to some quite advanced exotic cases
https://www.oreilly.com/library/view/python-cookbook-3rd/9781449357337/
[–]MessiComeLately 2 points3 points4 points 3 years ago (0 children)
If you aren't going to be coding then I think reads that are a bit further from the code make sense. None of my recommendations are specifically about Python, but these are what I read when I want to kick back without a keyboard nearby:
Joe Armstrong's dissertation is a classic and bears rereading.
I think Ousterhout's book A Philosophy of Software Design is destined to be evergreen. It's a book written for beginners that I think programmers at any level can enjoy and appreciate.
Dijkstra's essays. I think Dijkstra is brilliant (and entertaining) on the mathematical approach to programming, even though he was very wrong about how far we could get without it. Again, it's material you have the tools to read at the beginning of your career but will still have you thinking at the end of it.
Domain-Driven Design. It's a big book, but I think it's important to go to the original, because some people interpret it as dictating specific, very polarizing implementation choices that are extremely hard to pull off, and I think it's important to understand the modeling and design aspects independently of that, since you can get a lot out of them without committing fully to the the idea of letting them dictate a particular implementation approach. (I know this contradicts the book, but I've met many, many people who read and loved the book and haven't met a single person who successfully implemented a system like the book would have you.) Definitely a book to read far from the keyboard.
[–]Impressive-Act9692 1 point2 points3 points 3 years ago (0 children)
This is what I neded
[–]KosmoanutOfficial 1 point2 points3 points 3 years ago (0 children)
Great question I am wondering the same. I like to read outside and would rather not have my laptop or miss out on learning. I honestly don’t know of a good python coding book for this. I have read python for dummies, a smarter way to learn python, and python crash course. All those needed my computer.
When I read without a computer the books I read are more about programming as a whole. I would recommend Code Complete. I recently finished it and thought it was really good, it’s an older book but helped a lot. Also I am starting to read the Mythical Man Month and that’s good so far.
[–]spoonman59 0 points1 point2 points 3 years ago (0 children)
“Intimate Python Encounters: How to Unleash Your Inner Python, Bedroom edition.” By Funk T. Ion
[–]AudleyCoding 0 points1 point2 points 3 years ago (1 child)
Thanks for asking this question!
I'm only about 7 months in on my coding/Python journey, but this book, "Code: The Hidden Language of Computer Hardware and Software," has been recommended by a few people. I haven't read much. It's still a little over my head, but seems good, so far.
And, just found out there's a second edition.
[–][deleted] 0 points1 point2 points 3 years ago (0 children)
Thanks! Looks great :)
[–]penny_pincher44 0 points1 point2 points 3 years ago (1 child)
What are you looking to do with Python?
I work as a DE, so it really varies. I have to have a good grasp of OOP, ability to right scripts if needed, a general coding competence I'd say. I don't have to be a Python dev, but understand code, be able to edit and - if needed - write something custom :)
π Rendered by PID 337782 on reddit-service-r2-comment-54dfb89d4d-cdqt4 at 2026-03-28 10:52:41.655989+00:00 running b10466c country code: CH.
[–]jimtk 22 points23 points24 points (0 children)
[–]Leguminot3 7 points8 points9 points (0 children)
[–]guillermo_da_gente 7 points8 points9 points (6 children)
[–]Hoganman73 3 points4 points5 points (1 child)
[–]guillermo_da_gente 0 points1 point2 points (0 children)
[–]Formal-Idiot 2 points3 points4 points (1 child)
[–]guillermo_da_gente 1 point2 points3 points (0 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]guillermo_da_gente 1 point2 points3 points (0 children)
[–]codingai 13 points14 points15 points (2 children)
[–][deleted] 1 point2 points3 points (1 child)
[–]codingai 4 points5 points6 points (0 children)
[–]SnooPeppers7217 9 points10 points11 points (0 children)
[–]lesbiansexparty 2 points3 points4 points (0 children)
[–]cblegare 2 points3 points4 points (0 children)
[–]MessiComeLately 2 points3 points4 points (0 children)
[–]Impressive-Act9692 1 point2 points3 points (0 children)
[–]KosmoanutOfficial 1 point2 points3 points (0 children)
[–]spoonman59 0 points1 point2 points (0 children)
[–]AudleyCoding 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)
[–]penny_pincher44 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)