From 0abdb92eaf12a5510c8f5486f21ca5a1ae39dfc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdulkadir=20Furkan=20=C5=9Eanl=C4=B1?= Date: Sat, 3 Nov 2018 09:30:35 +0100 Subject: [PATCH] Add feedback message to nonexistent student id --- IA.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/IA.py b/IA.py index 078e171..d1ef50d 100755 --- a/IA.py +++ b/IA.py @@ -116,6 +116,8 @@ def main(): print("Student does not have clearance.") elif final == None: print("Clear to leave.") + else: + print("Student does not exist in the database. Please try again.") y = input("Press y and enter to run again.")