diff --git a/src/user_input/test_input.py b/src/user_input/test_input.py index 0acbbf76..4636b4e1 100644 --- a/src/user_input/test_input.py +++ b/src/user_input/test_input.py @@ -3,7 +3,7 @@ @see https://docs.python.org/3/library/functions.html#input User input prompts are very helpful when it comes to interactive programming. Not only in games but also in standard file operations, you may want your user to interact with the program. -Therefore, the user needs the opportunity to be able to put in information. +Therefore, the user needs the opportunity to be able to put in information. The user input in this example is saved in a variable and then displayed using that variable. """ @@ -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("Please type in your name: \n") # Printing a message based on the input. print(f"Welcome, {user_input}!")