C Sharp Best Practices - chrisbitm/python GitHub Wiki

Meaningful Naming Conventions

Choosing descriptive and meaningful names for variables, methods, classes, and other identifiers is a cornerstone of writing readable code. A well-named identifier means that it doesn’t need additional comments.

Embrace the PascalCase convention for classes and methods and the camelCase convention for variables. Furthermore, we should avoid using cryptic or abbreviated names that can confuse other developers.