Project Concept
underline_to_pascal()
Converts a string from underlined to pascal case.
Example
>>> underline_to_pascal("hello_world") "HelloWorld"
s (str) – the string to convert.
the converted string.
str