diff --git a/basics.py b/basics.py index 4b0e67f..08342c7 100644 --- a/basics.py +++ b/basics.py @@ -1,4 +1,3 @@ -monday_temperatures = [9.1, 8.8, 7.6] - -for temperature in monday_temperatures: - print(round(temperature)) \ No newline at end of file +student_grades = {"Marry":9.1, "Sim":8.8, "John":7.5} +for grades in student_grades.values(): + print(grades) \ No newline at end of file