Comment convertir la chaîne simple en cas de chameau dans Python
def camelize(str):
ans1 = str.title()
ans2 = ans1.translate({ord(' '): None})
return ans2
Lovely Lemur