Skip to content

Instantly share code, notes, and snippets.

@christiancost47
Created August 24, 2019 19:45
Show Gist options
  • Save christiancost47/c96db779282a826ee900ac94f6774712 to your computer and use it in GitHub Desktop.
Save christiancost47/c96db779282a826ee900ac94f6774712 to your computer and use it in GitHub Desktop.
capitalizing_text
name = "guido von"
print(name.title())
>>>Guido Von
name = "guido von"
print(name.upper())
>>>GUIDO VON
name = "Guido Von"
print(name.lower())
>>>guido von
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment