New to Python and coding in general. The more I learn (from different sources), the more I continue to hear the phrase "...this is a common naming convention." With the desire to do it right the first time, I wondered if there was a repository or central location for most/many of the common naming conventions found in Python. To clarify, I mean using "self" as the first parameter of a Class, importing numpy as np, importing pyplot as plt, importing pandas as pd, etc...
I have searched PEP 8 and SO and Google (and Google's style guide as suggested by an answer) and have not found anything like this. Is it worthwhile to have a resource such as this? If not, why?
I am considering this both as a student new to coding but also as an experienced (former) manager who has had to write many SOPs and understands the value of a repository for common information.
EDIT: I am appending further clarification: "given self
as a convention when creating a class, what are other conventions that are commonly reserved words a beginner might not know?"
Thank you,