Learn practical skills, build real-world projects, and advance your career

formula1

Use the "Run" button to execute the code.

thisdict={"Lewis Hamilton":1.46 , "Max verstappen" : 1.47}
x=sorted(thisdict.values())
print(k,x,'\n')
dict_keys(['Lewis Hamilton', 'Max verstappen']) [1.46, 1.47]