It's a dictionary named "votes". Now I want a function that can return the key names of the values that have the maximum value. If this is unclear, the function should return
ejected = ["red","cyan"]
since "red" and "cyan" have the biggest values in the dictionary. Can someone help me implement this?
Among Us Voting System: HALP AGAIN
Hi repl.it
Let's say I have the following code:
It's a dictionary named "votes". Now I want a function that can return the key names of the values that have the maximum value. If this is unclear, the function should return
since "red" and "cyan" have the biggest values in the dictionary. Can someone help me implement this?
Thanks in advance!
@adsarebbbad
votes
is a dictionary so you have to do a little bit extra and grab the max from thevalues
in thedict
object: