Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Conversion into CamelCase by suic
to_camel_case = lambda n: __import__("re").sub('\_\w', lambda m: m.group(0)[1].upper(), n.title())
March 22, 2018