Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python ค้นหาค่าสูงสุด 3 ค่าในพจนานุกรม


ในบทความนี้ เราจะเรียนรู้เกี่ยวกับวิธีแก้ปัญหาและแนวทางในการแก้ปัญหาที่ระบุ

คำชี้แจงปัญหา

จากพจนานุกรม เราจำเป็นต้องค้นหาค่าที่มีมูลค่าสูงสุดสามค่าและแสดงค่าเหล่านั้น

วิธีที่ 1 − การใช้โมดูลคอลเลกชัน ( ฟังก์ชันตัวนับ )

ตัวอย่าง

from collections import Counter
# Initial Dictionary
my_dict = {'t': 3, 'u': 4, 't': 6, 'o': 5, 'r': 21}
k = Counter(my_dict)
# Finding 3 highest values
high = k.most_common(3)
print("Dictionary with 3 highest values:")
print("Keys: Values")
for i in high:
   print(i[0]," :",i[1]," ")

ผลลัพธ์

Dictionary with 3 highest values:
Keys: Values
r : 21
t : 6
o : 5

วิธีที่ 2 - การใช้โมดูล heapq (ฟังก์ชันที่ใหญ่ที่สุด)

ตัวอย่าง

from collections import Counter
# Initial Dictionary
my_dict = {'t': 3, 'u': 4, 't': 6, 'o': 5, 'r': 21}
k = Counter(my_dict)
# Finding 3 highest values
high = k.most_common(3)
print("Dictionary with 3 highest values:")
print("Keys: Values")
for i in high:
   print(i[0]," :",i[1]," ")

ผลลัพธ์

Dictionary with 3 highest values:
Keys: Values
r : 21
t : 6
o : 5

บทสรุป

ในบทความนี้ เราได้เรียนรู้เกี่ยวกับวิธีการแปลงเลขฐานสิบเป็นเลขฐานสอง