From 5432bf426ad4448cc4e1462632f3380fd73a42c9 Mon Sep 17 00:00:00 2001 From: Jeremy L Date: Tue, 24 Mar 2020 11:09:35 -0500 Subject: [PATCH] Window was closing immediately. Added keypress to close window. --- welcome.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/welcome.py b/welcome.py index c702e9a..1248775 100644 --- a/welcome.py +++ b/welcome.py @@ -1,2 +1,3 @@ -print('welcome to python') \ No newline at end of file +print('welcome to python') +input('\nPress the \'ENTER\' key to exit.') \ No newline at end of file