【Python】dictionaryのvalueの演算

mydict = {"mike":50, "peter":30, "john":75}
total_score = sum(mydict.values())
print(total_score)

$ python3 test.py
155