Convert Sentence to CamelCase in Python #coding #python #programming

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

this is easier: s = "hello world python".title().strip()
new_string = s.replace(" ", "")
print(new_string)

ahmedthepep
Автор

s.title().replace(' ', '')

abdxdev
welcome to shbcf.ru