Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.sub(r'[A-Z]', repl lambda function, name) solution in Speedy category for Conversion from CamelCase by Phil15
from re import sub
repl = lambda match: ('_' if match.start() else '') + match.group().lower()
from_camel_case = lambda name: sub(r'[A-Z]', repl, name)
Sept. 7, 2018
Comments: