From 88e6b0749eb777d2b07de74a44c46fd7e5cabd29 Mon Sep 17 00:00:00 2001 From: Grace Kabwe Date: Thu, 13 Mar 2025 16:36:25 +0200 Subject: [PATCH] Fixed issues in Python scripts --- src/user_input/test_input.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user_input/test_input.py b/src/user_input/test_input.py index 0acbbf76..8762deaf 100644 --- a/src/user_input/test_input.py +++ b/src/user_input/test_input.py @@ -11,7 +11,7 @@ def user_input(): """Input prompt""" # Printing statement to signal the user that we are waiting for input. - user_input = input("Please type in your name\n") + user_input = input("Grace Kabwe\n") # Printing a message based on the input. print(f"Welcome, {user_input}!")