python-guide icon indicating copy to clipboard operation
python-guide copied to clipboard

Python best practices guidebook, written for humans.

Results 140 python-guide issues
Sort by recently updated
recently updated
newest added

This is the URL with the new image to replace the kitten one: [https://ibb.co/7Wv7tRg](url)

Hi there, thank you for all the work put into this guide so far! Are there any discussions or plans to mention [Poetry](https://python-poetry.org/) anywhere in this guide (I couldn't find...

In doc/intro/learning.rst the link to the "Problem Solving with Algorithms and Data Structures" shows a 404 error after checking, It seems that the site is no longer availabel at that...

I came here as I was looking for similar to: [Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices) but for Python and github surfaced this in the search results. I notice this Guide lacks a...

I saw that there is little mention in the guide of how to install and handle multiple python versions. I wrote [this short guide gist on using PyEnv](https://gist.github.com/72d7a7ee2e6e72e97bee408abd18ebf9) for myself...

In the Code Style chapter examples - [Short Ways to Manipulate Lists](https://python-docs.readthedocs.io/en/latest/writing/style.html#short-ways-to-manipulate-lists) there is an example "Add three to all list members." "bad" ```python for i in range(len(a)): a[i] +=...

when following the guide the command no longer works, you need to use the `py` command instead https://github.com/microsoft/vscode-docs/issues/3198#issuecomment-554361971

I am trying , like this : from tkinter import * from io import BytesIO window= Tk() db=MySQLdb.connect("localhost","root","??","??") cursor=db.cursor() sql= "SELECT LOGO FROM SYSTEMDETAILS" cursor.execute(sql) logo=cursor.fetchone() img = Image.open(BytesIO(logo)) phimg...