Back-End Programming Exam  >  Back-End Programming Videos  >  Python Tutorial in Hindi  >  Python tutorial in Hindi 41 : Dictionaries items method and more !!

Python tutorial in Hindi 41 : Dictionaries items method and more !! Video Lecture | Python Tutorial in Hindi - Back-End Programming

80 videos

FAQs on Python tutorial in Hindi 41 : Dictionaries items method and more !! Video Lecture - Python Tutorial in Hindi - Back-End Programming

1. डिक्शनरी के items() मेथड का उपयोग क्या होता है?
उत्तर: items() मेथड डिक्शनरी के सभी आइटम्स को (कुंजी-मान) टपल के रूप में लौटाता है। यह एक जेनरेटर ऑब्जेक्ट रिटर्न करता है जिसे सूची के रूप में भी उपयोग किया जा सकता है।
2. डिक्शनरी के items() मेथड का उपयोग करने के लिए कौन-सा विधि उपयोग किया जाता है?
उत्तर: items() मेथड को डिक्शनरी ऑब्जेक्ट पर कॉल किया जाता है। उदाहरण के लिए: my_dict.items()
3. डिक्शनरी के items() मेथड का परिणाम क्या होता है?
उत्तर: items() मेथड के परिणामस्वरूप, एक जेनरेटर ऑब्जेक्ट या एक टपल सूची प्राप्त होती है, जिसमें हर आइटम के लिए एक कुंजी-मान टपल होता है।
4. डिक्शनरी को items() मेथड के बिना डायरेक्टली कैसे प्रिंट किया जा सकता है?
उत्तर: डिक्शनरी को items() मेथड के बिना प्रिंट करने के लिए आप इस तरह का कोड उपयोग कर सकते हैं: print(my_dict)
5. डिक्शनरी के items() मेथड का उदाहरण संग्रह क्या हो सकता है?
उत्तर: एक उदाहरण संग्रह के रूप में, items() मेथड का उपयोग डिक्शनरी के सभी आइटम्स को प्रिंट करने के लिए किया जा सकता है। उदाहरण के लिए: my_dict = {'कुंजी1': 'मान1', 'कुंजी2': 'मान2', 'कुंजी3': 'मान3'} for key, value in my_dict.items(): print(key, value) यह प्रिंट करेगा: कुंजी1 मान1 कुंजी2 मान2 कुंजी3 मान3
80 videos
Explore Courses for Back-End Programming exam
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

Free

,

MCQs

,

video lectures

,

Python tutorial in Hindi 41 : Dictionaries items method and more !! Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

ppt

,

Summary

,

Sample Paper

,

Python tutorial in Hindi 41 : Dictionaries items method and more !! Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

pdf

,

Important questions

,

practice quizzes

,

shortcuts and tricks

,

Objective type Questions

,

Python tutorial in Hindi 41 : Dictionaries items method and more !! Video Lecture | Python Tutorial in Hindi - Back-End Programming

,

Exam

,

Viva Questions

,

Semester Notes

,

past year papers

,

study material

,

Extra Questions

,

Previous Year Questions with Solutions

,

mock tests for examination

;