From f47c46c22f3cbed4a620f652c4a6b0520046645b Mon Sep 17 00:00:00 2001 From: David Avery Date: Tue, 28 Jan 2020 16:43:10 +0000 Subject: [PATCH] Lesson 49 --- basics.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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