forked from trekhleb/learn-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_input.py
23 lines (15 loc) · 824 Bytes
/
test_input.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""User input
@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.
"""
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")
# 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}!")