Update decapitalize.md
This commit is contained in:
@ -9,7 +9,7 @@ Decapitalize the first letter of the string and then add it with rest of the str
|
|||||||
Omit the `upper_rest` parameter to keep the rest of the string intact, or set it to `True` to convert to uppercase.
|
Omit the `upper_rest` parameter to keep the rest of the string intact, or set it to `True` to convert to uppercase.
|
||||||
|
|
||||||
```py
|
```py
|
||||||
def decapitalize(string, upper_rest=False):
|
def decapitalize(str, upper_rest=False):
|
||||||
return str[:1].lower() + (str[1:].upper() if upper_rest else str[1:])
|
return str[:1].lower() + (str[1:].upper() if upper_rest else str[1:])
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user