Update app.py
Browse files
app.py
CHANGED
|
@@ -15,6 +15,9 @@ def get_message_repeater(message:str, times:int)-> str: #it's import to specify
|
|
| 15 |
Args:
|
| 16 |
arg1: the message to repeat
|
| 17 |
arg2: how many times to repeat the message
|
|
|
|
|
|
|
|
|
|
| 18 |
"""
|
| 19 |
return (message + " ") * times
|
| 20 |
|
|
|
|
| 15 |
Args:
|
| 16 |
arg1: the message to repeat
|
| 17 |
arg2: how many times to repeat the message
|
| 18 |
+
|
| 19 |
+
Returns:
|
| 20 |
+
str: The repeated message.
|
| 21 |
"""
|
| 22 |
return (message + " ") * times
|
| 23 |
|