Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
while slice expansion and isupper() solution in Speedy category for Conversion from CamelCase by PythonWithPI
def from_camel_case(name):
name=list(name)
if name[0].isupper():
name[0]=name[0].lower()
i=1
while i
Feb. 15, 2019