Как преобразовать простую строку в Camel Case в Python
def camelize(str):
ans1 = str.title()
ans2 = ans1.translate({ord(' '): None})
return ans2
Lovely Lemur
def camelize(str):
ans1 = str.title()
ans2 = ans1.translate({ord(' '): None})
return ans2