25/07/2022
Identifiers
Identifiers are names that identify variables, functions, modules, classes, and other objects in Python.
The name of an identifier needs to be a letter or underscore (_). The following characters can be alphanumeric or underscore.
Python identifiers are case-sensitive. For example, the counter and Counter are different identifiers.
In addition, you cannot use Python keywords for naming identifiers.