- Try to use names that helps to understand purpose of it in the code.
- Identifiers can be a combination of letters (a to z) or (A to Z),digits (0 to 9), and an underscore _.
- An identifier cannot start with a digit.
- Invalid name example: 1variable
- Python Keywords are reserved and connote be used as identifiers

Leave a comment