Keywords in Python / पायथन में कीवर्ड :-
Keywords (कीवर्ड) वे Reserved Words (आरक्षित शब्द) होते हैं जिनका अर्थ Python Language में पहले से निर्धारित (Predefined) होता है। इनका उपयोग विशेष कार्य (Specific Purpose) करने के लिए किया जाता है।
Python Interpreter इन Keywords को विशेष निर्देश (Instructions) के रूप में पहचानता है। इसलिए इन्हें Variable, Function, Class, Module या Identifier के नाम के रूप में उपयोग नहीं किया जा सकता।
English
Keywords are reserved words in Python that have predefined meanings. They are used to perform specific tasks in a Python program.
The Python Interpreter recognizes these words as special instructions. Therefore, they cannot be used as names for variables, functions, classes, modules, or other identifiers.

Characteristics of Keywords / कीवर्ड की विशेषताएँ :-
English