Dictionnaire d'impression Python ligne par ligne

# Iterate over key/value pairs in dict and print them
for key, value in student_score.items():
    print(key, ' : ', value)
Elated Echidna