We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fe76e6 commit e4ea766Copy full SHA for e4ea766
snippets/python/string-manipulation/reverse-string.md
@@ -7,7 +7,7 @@ tags: string,reverse
7
8
```py
9
def reverse_string(s:str) -> str:
10
- return s[::-1]
+ return s[::-1]
11
12
# Usage:
13
reverse_string('hello') # Returns: 'olleh'
0 commit comments