Identifiers
In a Python program or any other programming language, it is common to use programming elements such as variables, keywords, functions, classes, modules and packages. These elements have names which are predefined in the language, or can be used by the programmer at the time of writing code. These names are called Identifiers . Examples : variables ----- _bookname, num1 keywords ----- if, while, yield functions ----- print(), int(), len() classes ----- Complex, Exception modules ------ Calender, random packages ----- Pillow, tkinter An identifier can only start with an alphabet that may be abcdefghijklmnopqrstuvwxyz ...