mixedCase

Report a typo

Convert a text into lowerCamelCase, or mixedCase.

The input format:

A lowercased word or several words separated by spaces.

The output format:

Print this text stylized as mixedCase, that is, the first word should be in lowercase and all other words – capitalized.

Sample Input 1:

camel

Sample Output 1:

camel

Sample Input 2:

lower camel case

Sample Output 2:

lowerCamelCase
Write a program in Python 3





___

Create a free account to access the full topic