Identifiers are the names that are given to the various program elements such as functions, class, variables, list, tuple etc.
They are defined to give a unique name to an entity to identify it during the run time of the program.
There are some rules for making an identifier in python -
var = 0 _var = 0 var = 0
Three of them are valid identifiers in python.
0codiens
The above declaration will raise a syntax error.
pass = 78
In this case pass is a keyword of python language so this is invalid declaration.
Codie ns = 90
The given identifier is invalidand it will raise an error.
i=90 I=67
Here, i and I both are different and are stored in different memory locations.