Python/basics.py
2020-01-28 16:43:10 +00:00

3 lines
110 B
Python

student_grades = {"Marry":9.1, "Sim":8.8, "John":7.5}
for grades in student_grades.values():
print(grades)