String
- py_kaos_utils.string.create_initials(s: str) str
Return the initial letter of each word in s, capitalized and strung together
- Example:
>>> create_initials("John Smith") == "JS"
- Parameters
s – String to create initials out of
- Returns
Initials of s, capitalized