If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
keywords , Python में predefined कुछ words होते जिनका कुछ मतलब होता है। और इन words / keywords के नाम के variables , constant variables, modules , class names , functions etc. हम नहीं बना सकते है , क्योंकि इससे हमरे द्वारा बनाए गए variables और actual keywords में confusion होती है , इसलिए हम इन्हे define नहीं कर सकते हैं। और अगर हम ऐसा करते भी है तो error आएगी।
python में keyword module का use करके सभी predefined python keywords के बारे में जान सकते हैं।
import keyword
print(keyword.kwlist)
C:\Users\Rahulkumar\Desktop\python>python py_keywords.py ['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
तो कुछ इस तरह से हम python में keywords की listing करा सकते हैं। अब इन keywords के बारे में जानेंगे कि ये keywords use क्यों होते हैं।
Keyword Name | Description |
---|---|
False / True | ये दोनों ही Boolean values हैं। |
None | यह None / empty value define करता है। |
and | यह as a logical operator की तरह use किया जाता है , यह sure करता है कि किसी condition में दी गयी सभी condition true हैं। |
or | यह भी एक logical operator की तरह use किया जाता है , यह sure करता है कि दो conditions में से एक condition true हैं। |
break | break keyword का use loop में किसी specified condition पर loop को break / exit करता है। |
class | इसका use class define करने के लिए किया जाता है। |
continue | continue, किसी loop में किसी specified condition पर single iteration को skip करता है। |
def | def का use function define करने के लिए किया जाता है। |
if | यह if statement define करता है , जिसमे condition true होने पर ही यह run होता है। |
else | यह if statement साथ use किया जाता है , जिसमे condition false होने पर ही यह run होता है। |
try | इसका use exception handling के लिए किया जाता है , इसमें वो code लिखते हैं जिसमे exception chances होते हैं। |
except | यह try के साथ ही work करता है , exception आने पर यह run होता है। |
finally | यह try , except के साथ run होता है। यह दोनों case में run होता है exception आने पर भी और न आने पर भी। |
import | import का use user defined या predefined modules को import करने के लिए किया जाता है। |
for | यह for loop define करने के लिए use किया जाता है। |
while | while का use, while loop define करने के लिए किया जाता है। |
lambda | lambda का use lambda functions define करने के लिए किया जाता है। |
return | return किसी function में value return करने के लिए use किया जाता है। |