From 6cefa8ef7bb0cc2ce247a253fca548e2c4581be2 Mon Sep 17 00:00:00 2001 From: David Avery Date: Tue, 28 Jan 2020 17:21:50 +0000 Subject: [PATCH] Lesson 52 --- basics.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/basics.py b/basics.py index 08342c7..e453560 100644 --- a/basics.py +++ b/basics.py @@ -1,3 +1,4 @@ -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 +username = "" + +while username != "pypy": + username = input("Enter username: ") \ No newline at end of file