Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,9 +38,9 @@ def get_reverse_str(word: str) -> str:
|
|
| 38 |
"""
|
| 39 |
A tool that returns a input word reversed
|
| 40 |
Args:
|
| 41 |
-
word
|
| 42 |
Returns:
|
| 43 |
-
word2
|
| 44 |
"""
|
| 45 |
word2 = word[::-1]
|
| 46 |
return word2
|
|
|
|
| 38 |
"""
|
| 39 |
A tool that returns a input word reversed
|
| 40 |
Args:
|
| 41 |
+
word: A string containing a word
|
| 42 |
Returns:
|
| 43 |
+
word2: The input word reversed
|
| 44 |
"""
|
| 45 |
word2 = word[::-1]
|
| 46 |
return word2
|