Python/basics.py

3 lines
110 B
Python
Raw Normal View History

2020-01-28 16:43:10 +00:00
student_grades = {"Marry":9.1, "Sim":8.8, "John":7.5}
for grades in student_grades.values():
print(grades)