Contents:
Split a string at uppercase letters.
s (str) – The string to split.
The list of substrings.
List[str]
Examples
>>> split_at_uppercase('ITAdaKImasu') ['ITA', 'da', 'KI', 'masu']