What are Keywords & Identifiers in Python | Most Asked Interview Q&A

Опубликовано: 16 Март 2026
на канале: TecTute
66
7

#pythoninterviewquestions #python #pythonprogramming
Chapter - Timestamp
00:00 Intro.
00:09 What are keywords in Python and why are they important ?
00:57 What are Identifiers in python ?

1. What are keywords in Python and why are they important ?
2. What are Identifiers in python ?

Keywords in Python are predefined, reserved words that have a specific meaning and purpose within the programming language. These words cannot be used as variable names, function names or identifiers in Python code because they are already used to define the syntax and structure of the language.
In Python, an identifier is a name given to a variable, function, class, module, or other user-defined object. An identifier serves a unique name for the object it is assigned to, allowing it to be referenced and used throughout a program.