Pankaj Kumar

Pankaj Kumar

I have been working on Python programming for more than 12 years. At AskPython, I share my learning on Python with other fellow developers.

Python Course – Indentation

Python statements are grouped together using indentation. So, it’s a good idea to learn about it because one small indentation mistake can cause your code to move into some different block causing unwanted effects.

Python Course – Identifiers

Identifiers are name given to a Python program element such as variables, functions, class name, etc. There are certain rules and best practices to follow if you want to to write Python program in a true pythonic way.

Python Course – Keywords

Python keywords are a list of reserved words used by Python interpreter. So, we can’t use them in our program. We can’t create a variable or function name with the same name as these keywords.