Tazahindi.com
Prepared by
प्रत्येक प्रोग्रामिंग भाषा में विशेष आरक्षित शब्द या कीवर्ड होते हैं, जिनके विशिष्ट अर्थ और प्रतिबंध होते हैं कि उनका उपयोग कैसे किया जाना चाहिए ।
पायथन प्रोग्रामिंग में भी कीवर्ड आरक्षित शब्द हैं जिनके साथ एक विशेष अर्थ जुड़ा हुआ है और उन विशिष्ट उद्देश्यों के अलावा किसी भी चीज के लिए उपयोग नहीं किया जा सकता है । प्रत्येक कीवर्ड को विशिष्ट कार्यक्षमता प्राप्त करने के लिए डिजाइन किया गया है ।
अब तक पायथन प्रोग्रामिंग भाषा में 35 कीवर्ड उपलब्ध हैं । यह संख्या समय के साथ थोड़ी भिन्न हो सकती है ।
पायथन प्रोग्रामिंग में कौन से शब्द कीवर्ड हैं, यह जानने या पता लगाने के कई तरीके हैं। सबसे आसान तरीका है :-
1. Use an IDE with Syntax Highlighting 2. Use code in a REPL to check keywords 3. You can get list of all available keywords using help(): 4. Using a keyword module
पायथन कीवर्ड उनके उपयोग के आधार पर समूह हो सकते हैं, जो निम्न प्रकार हैं :-
1. Value keywords 2. Operator keywords 3. Control flow keywords 4. Iteration keywords 5. Structure keywords 6. Returning keywords 7. Import keywords 8. Exception handling keywords 9. Variable handling keywords 10. Asynchronous programming keywords
Value keywords: True, False, None Operator keywords : and, or, not, in, is Control Flow keywords: if, elif, else Iteration keywords: for, while, break, continue, else Structure keywords : def, class, with, as, pass, lambda
Returning keywords: return, yield Import keywords: import, from, as Exception handling keywords: try, except, raise, finally, else, assert variable Handling keywords: del, global, nonlocal asynchronous programming keywords: async, await
True, False, None keywords are used as values. and, or, not, in, is keywords are used for mathematical operation. if, elif, else keywords are used for conditional logic. for, while, break, continue, else keywords are used in looping statements.
def keyword is used to define a function or method of class. class keyword is used to define a class in Python. pass keyword is used to specify the block is intentionally left blank. lambda keyword is used to define a function that doesn’t have name and has only one statement.
return keyword is valid only as part of a function defined with def. When Python encounters this keyword, it will exit the function at that point and return the results of whatever comes after the return keyword. When you call a function with yield statements, Python executes the function until it reaches the first yield keyword and then returns a generator.
import, from, as these are called Import keywords are used to import, or include a module for use in Python program. try, except, raise, finally, else, assert keywords are used to handled the exception in Python. del, global, nonlocal keywords are used to work with variables.