Important Notice:

Keywords in Python

Keywords in Python

2 views 1 min read

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 / कीवर्ड की विशेषताएँ :-

  1. Keywords Python के Reserved Words होते हैं।
  2. प्रत्येक Keyword का एक निश्चित अर्थ (Predefined Meaning) होता है।
  3. Keywords को Variable, Function, Class या Identifier के नाम के रूप में उपयोग नहीं किया जा सकता।
  4. Keywords की Spelling नहीं बदली जा सकती।
  5. Keywords Case Sensitive होते हैं।
  6. Python Version के अनुसार Keywords की संख्या बदल सकती है।
  7. Python 3.x में लगभग 35 Keywords उपलब्ध हैं।

English

  1. Keywords are reserved words in Python.
  2. Every keyword has a predefined meaning.
  3. Keywords cannot be used as variable, function, class, or identifier names.
  4. The spelling of keywords cannot be changed.
  5. Keywords are case-sensitive.
  6. The number of keywords may vary with Python versions.
  7. Python 3.x contains about 35 keywords.

Related Notes