इस प्रश्न में लैम्ब्डा फंक्शन का इस्तेमाल करके तीनो डिक्शनरी में से maximum वैल्यू को फाइंड करना है जिसके लिए ये कोड देखें
Python program that uses a lambda function to find the maximum number in three dictionaries
स्टेप-बाय-स्टेप समझे
- तीन dictionaries define किया गया हमने dict1, dict2, और dict3 तीन dictionaries बनाई हैं जिसमें कुछ numerical values दिया हैं।
- Lambda function का इस्तेमाल करके हर dictionary की values का maximum निकालने के लिए max function और lambda function का उपयोग किया गया है।
- max(dict1.values(), key=lambda x: x) ये लाइन dict1 की values में से maximum value निकालती है।
- Overall maximum निकालना: हमने तीनों dictionaries के maximum values में से एक overall maximum value निकाली है।
- Result print करना: हर dictionary का maximum और overall maximum value print कर दिया।
मुझे उम्मीद है ये explanation आपकी मदद करेगा।
0 Comments
Please don't Add spam links,
if you want backlinks from my blog contact me on rakeshmgs.in@gmail.com