Python keyword and identifiers

Python Keywords
Keywords are predefined, reserved words used in Python programming that have special meanings to the compiler.

We cannot use a keyword as a variable name, function name, or any other identifier. They are used to define the syntax and structure of the Python language.

All the keywords except True, False and None are in lowercase and they must be written as they are. The list of all the keywords is given below.

List of python keyword

Python Identifiers

Identifiers are the name given to variables, classes, methods, etc. For example,

language = ‘Python’.
Here, language is a variable (an identifier) which holds the value ‘Python’.

We cannot use keywords as variable names as they are reserved names that are built-in to Python. For example,

continue = ‘Python’
The above code is wrong because we have used continue as a variable name. To learn more about variables

Rules for Naming an Identifier

1) Identifiers cannot be a keyword.
2) Identifiers are case-sensitive.
3) It can have a sequence of letters and digits. However, it must begin with a letter or _. 4) The first letter of an identifier cannot be a digit.
5) It’s a convention to start an identifier with a letter rather _.
6) Whitespaces are not allowed.
7) We cannot use special symbols like !, @, #, $, and so on.

Some Valid and Invalid Identifiers in Python

Things to Remember

Python is a case-sensitive language. This means, Variable and variable are not the same.

Always give the identifiers a name that makes sense. While c = 10 is a valid name, writing count = 10 would make more sense, and it would be easier to figure out what it represents when you look at your code after a long gap.

Multiple words can be separated using an underscore, like this_is_a_long_variable.

Leave a comment

Design a site like this with WordPress.com
Get started