From 7ae45807b02a1742cbce5d2533c490c6c8a9eee6 Mon Sep 17 00:00:00 2001 From: chuckis Date: Wed, 2 Oct 2019 23:40:44 +0300 Subject: [PATCH] Update decapitalize.md --- snippets/decapitalize.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/decapitalize.md b/snippets/decapitalize.md index e26758a31..258f1425a 100644 --- a/snippets/decapitalize.md +++ b/snippets/decapitalize.md @@ -9,11 +9,11 @@ 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. ```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:]) ``` ```py decapitalize('FooBar') # 'fooBar' decapitalize('FooBar', True) # 'fOOBAR' -``` \ No newline at end of file +```