दोस्तो आज हमे जानने की Python Reserved word क्या है (Python Reserved word in hindi)Reserved word एक ऐसे word होता है जो compiler मे पहले से ही defined होता है। किसी भी programming Language मे keyword बहुत ही महत्वपूर्ण topic होता है python 3.7 में 33 Reserved word/keyword होते है तो चलाइए इसे विस्तार से समझते हैं की Python Reserved word क्या है (Python Reserved word in hindi)
Introduction (परिचय)
Python Reserved word को Reserved keyword या Keyword भी कर सकते है। Keyword एक word होता जो compiler मे predefined होता है इसका अर्थ Compiler को पहले से ही पता होता है की इस word का क्या अर्थ है और compiler उस उससे प्रकार से execute करता है।
प्रत्येक keyword का एक specific meaning व special operation होता हैं keyword को use करने के लिए निधारित नियम होते हैं जिन्हें syntax कहते हैं। Python मे 33 keyword होते है लेकिन इनकी संख्या कम या बढ़ती होती रहती हैं। keyword case sensitive होते हैं मतलब True और true दोनो अलग-अलग होते हैं
Types of Python Reserved Word (Python Reserved Word के प्रकार)
1) and- यह true return करता है यदि सभी condition true हो।
2) not- not keyword का प्रयोग दिए गए operand को True से False या False से true में convert करने के लिए किया जाता है
3) or- यदि दिए गए operands में से एक भी operand true होता है, तब यह true return करता हैं
4) as- इस का इस्तेमाल alias (उपनाम ) create करने के लिए किया जाता हैं
Ex- import math as mt
यहाँ math module को import किया गया लेकिन इस का उपनाम mt create किया गया है अब program में जब भी math module का Use करना हो तो हम mt के दावरा कर सकते हैं
5) break- इसका use program के execution को break करने के लिए किया जाता है।
6) Continue- Continue keyword का प्रयोग iterate हो रहे कुछ statements को skip करने के लिए किया जाता है।
7) if- if का use किसी condition को check करने के लिए किया जाता
8) else- इसका use if के साथ किया जाता है यदि किसी condition के 2 output हो तो else का use किया जाता है condition true होने पर if statement व false होने पर else statement execute होती हैं
9) elif- यदि 2 या 2 से अधिक condition हो तो इसका use होता है।
10) false- false एक boolean value होती है जो 0 के equal होती है यदि कोई condition या statement गलत होती है तो false return होती हैं
11) true- true एक boolean value होती है जो 1 के equal होती है यदि कोई condition या statement सही होती है तो true return होती हैं
12) for- for keyword का use looping मे होता है।
13) from- from का use किसी module मे से किसी special function को import करने के लिए लिया जाता है
14) global- इसका use global variable create करने के लिए किया जाता है।
15) import- इसका use module को import करने के लिए किया जाता है।
16) in- इसका use collection(Tuple, list, string, dictionary ) के element को access करने के लिए किया जाता हैं
17) none- none का मतलब कोई value नहीं होती। अगर function कोई value-return नहीं करता है तो None return करता है।
18) raise- raise का use exception को raise करने के लिए किया जाता है
19) return- इसका use का कुछ value को return करने के लिए किया जाता है
20) Class- User के द्वारा classes को define करने के लिए class keyword का use किया जाता है।
21) def- def keyword use user-defined function बनाने के लिए किया जाता है।
22) del- del का अर्थ delete होता हैं
del का प्रयोग list, tuple, dictionary या किसी और collection में element को delete करने के लिए किया जाता है।
23) except- except का प्रयोग exception/error handling के लिए किया जाता है। try clause के साथ except का प्रयोग किया जाता है।
24) try- try का प्रयोग exception handling में किया जाता है जो code exception check करता है। इसमें code को try block पर लिखा जाता है।
25) Finally- finally का प्रयोग try-except या try block के साथ किया जाता है। exception/error हो या ना हो finally block execute होता हैं
26) assert- assert check करता है कि कोई भी दिया गया expression true हैं या false है। program Execution तभी process होता है जब expression true होता है। यदि false होगा तो यह assert exception error को raise करता है
27) nonlocal- nonlocal का प्रयोग nested function के लिए किया जाता है।
nonlocal variable global नहीं होते। अगर inner function में इनको लिया जाता है तो outer functions में इनकी value परिवर्तित नहीं होती है।
28) is- इस का प्रयोग object equality के लिए किया जाता है। ये keyword = = operator के तरह ही होता हैं
29) pass- pass का प्रयोग loops, functions और classes को रिक्त रखने के लिए होता है। ये एक null statement/block होता हैं।pass statement का इस्तेमाल एक ही line पर या separate line पर भी किया जाता है।
30) While- While keyword का प्रयोग looping के लिए किया जाता है। जब तक while condition true होती है, तब तक statement iterate होता रहता है और अगर condition false या loop break किया जाता है, तब loop iteration बन्द हो जाता
31) with- with keyword का प्रयोग File handling के लिए किया जाता है। जब file के लिए 'with-as' statement का प्रयोग किया जाता है तब file को close करने की जरूरत नहीं पड़ती है।
32) yield- yield का प्रयोग function के लिए return statement की तरह ही किया जाता है।
33) lambda- python में lambda function को anonymous function भी कहते है। anonymous function वह function होते है जिन्हें बिना name के defined किया जा सकता है।
Thanks
जवाब देंहटाएं👌👌
जवाब देंहटाएं