Menu

gitpiper

decapitalize python Code Snippet in 2024

stringintermediate

Last Updated: 25 March 2024

Decapitalizes the first letter of a string.

  • Use list slicing and str.lower() to decapitalize the first letter of the string.
  • Use str.join() to combine the lowercase first letter with the rest of the characters.
  • Omit the upper_rest parameter to keep the rest of the string intact, or set it to True to convert to uppercase.
def decapitalize(s, upper_rest = False): return ''.join([s[:1].lower(), (s[1:].upper() if upper_rest else s[1:])])
decapitalize('FooBar') # 'fooBar' decapitalize('FooBar', True) # 'fOOBAR'

python snippet similar to decapitalize For You in March 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️