Dec 31, 2021
This is awesome!
A shorter code will even be a better solution. using your approach
def to_Jaden_Case(string):
return " ".join(w.capitalize() for w in string.split())
-split the string
-capitalize the first word of every element of the string
-join the elements