Python Forum
Getting the maximum value:key pair from a dictionary
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Getting the maximum value:key pair from a dictionary
#1
I have a dictionary with 40 student names and their respective math scores {'Ines': 78, 'Mary': 42, 'Molly': 72, 'Maria': 83,} . How do I get Python to print the student with the highest score. i.e Ziad -- 99 ?? My code currently returns the highest score with a student name but not the student who scored this result.
code:

mydicttest = dict(zip(Student, Maths_marks))
print("Maths marks: " + str(mydicttest))
maxmath = max(zip(mydicttest.keys(), mydicttest.keys()))[1]
print('Highest maths score: ' + maxmath + ' ' + '-' + ' ' + str(max(Maths_marks)))
current output:
Output:
Maths marks: {'Ines': 78, 'Mary': 42, 'Molly': 72, 'Maria': 83, 'Katya': 87, 'Pippa': 67, 'Charlotte': 77, 'Dima': 70, 'Hala': 84, 'Georgia': 43, 'Zara': 54, 'Ally': 68, 'Zeina': 89, 'Natasha': 80, 'Serene': 59, 'Sally': 91, 'Francesca': 63, 'Dalia': 96, 'Rebecca': 48, 'Fatima': 83, 'Max': 43, 'Damon': 29, 'Brad': 64, 'Ben': 92, 'Marcus': 90, 'James': 74, 'Ziad': 66, 'Josh': 39, 'Yaseen': 60, 'Marc': 55, 'Patrick': 100, 'William': 49, 'Abdullah': 57, 'Ali': 68, 'Tobi': 82, 'Saymond': 94, 'Alex': 65, 'Jad': 68, 'Ahmed': 78, 'Lukas': 40} Highest maths score: Ziad - 100
output should be Patrick - 100 but I can't understand why Ziad is getting printed, possibly because the starts with Z??
Yoriz write Jan-17-2022, 07:08 PM:
Please post all code, output and errors (in their entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Reply


Messages In This Thread
Getting the maximum value:key pair from a dictionary - by sean1 - Jan-17-2022, 08:52 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to extract specific key value pair from string? aditi06 0 3,344 Apr-15-2021, 06:26 PM
Last Post: aditi06
  Auto re-pair / re-sync Controller via Script? User3000 2 3,218 Nov-30-2020, 11:42 AM
Last Post: User3000
  team pair issue jk91 29 13,082 Mar-03-2020, 06:15 PM
Last Post: jefsummers
  Search a List of Dictionaries by Key-Value Pair; Return Dictionary/ies Containing KV dn237 19 10,074 May-29-2019, 02:27 AM
Last Post: heiner55
  Key Value Pair output UtiliseIT 9 7,131 May-03-2019, 07:30 AM
Last Post: buran
  Replace with Maximum Value leoahum 4 3,807 Mar-13-2019, 06:24 PM
Last Post: leoahum
  Parsing Text file having repeated value key pair using python manussnair 3 4,368 Aug-04-2018, 11:48 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020