Beta Scribbles
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

Beta Scribbles
Beta Scribbles

Written by Beta Scribbles

Reader. Published Author. Software Engineer.

No responses yet