Learn Python programming keywords in Hindi

Tazahindi.com

Prepared by

def

import

Try

except

प्रत्येक प्रोग्रामिंग भाषा में विशेष आरक्षित शब्द या कीवर्ड होते हैं, जिनके विशिष्ट अर्थ और प्रतिबंध होते हैं कि उनका उपयोग कैसे किया जाना चाहिए । 

पायथन प्रोग्रामिंग में Keyword क्या है ?

पायथन प्रोग्रामिंग में भी कीवर्ड आरक्षित शब्द हैं जिनके साथ एक विशेष अर्थ जुड़ा हुआ है और उन विशिष्ट उद्देश्यों के अलावा किसी भी चीज के लिए उपयोग नहीं किया जा सकता है । प्रत्येक कीवर्ड को विशिष्ट कार्यक्षमता प्राप्त करने के लिए डिजाइन किया गया है । 

अब तक पायथन प्रोग्रामिंग भाषा में 35 कीवर्ड उपलब्ध हैं ।  यह संख्या समय के साथ थोड़ी भिन्न हो सकती है । 

पायथन प्रोग्रामिंग में कितने Keywords है ?

पायथन प्रोग्रामिंग में कौन से शब्द  कीवर्ड हैं, यह जानने या पता लगाने के कई तरीके हैं। सबसे आसान तरीका है :-

पायथन Keywords की पहचान कैसे करें ?

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.

अंतिम विचार 

कंप्यूटर साइंस और प्रोग्रामिंग के बारे में अधिक जानने के लिए, आप हमारी वेबसाइट को नीचे दिए लिंक से विजिट कर सकते हैं ।