The standard is to use English names in programming
Python is case-sensitive, which means, for example, Name and name have different meanings
The first letter of a variable, function, or class must be one of the letters (a-z) or (A-Z). Numbers or special characters such as & and% are not allowed
Python is sensitive to indentations, that marks a block segment in your code
Functions begin with lowercase
Classes begins with a capital letter
There are reserved words, such as and, if, else, break, import, and more, which are not allowed in naming variables