From a9fcb2b55d14c03bd2615b82ba9457b4e0ceaa32 Mon Sep 17 00:00:00 2001 From: aliayub40995 Date: Mon, 12 Feb 2024 14:25:55 +0500 Subject: [PATCH] Added a new test case for user input address. --- src/user_input/test_input.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/user_input/test_input.py b/src/user_input/test_input.py index 0acbbf76..2ed6aff1 100644 --- a/src/user_input/test_input.py +++ b/src/user_input/test_input.py @@ -15,3 +15,9 @@ def user_input(): # Printing a message based on the input. print(f"Welcome, {user_input}!") + + # Printing statement to signal the user that we are waiting for input. + user_input_address = input("Please type in your address\n") + + # Printing a message based on the input. + print(f"Great, we have your address as {user_input_address}!")