Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Conversion from CamelCase by freixodachamorra
def from_camel_case(phrase):
s = sep = ""
for i in phrase:
if ord(i) < 97:
s += sep + chr(ord(i) + 32)
sep = '_'
else:
s += i
return s
if __name__ == '__main__':
print("Example:")
print(from_camel_case("Name"))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert from_camel_case("MyFunctionName") == "my_function_name"
assert from_camel_case("IPhone") == "i_phone"
assert from_camel_case("ThisFunctionIsEmpty") == "this_function_is_empty"
assert from_camel_case("Name") == "name"
print("Coding complete? Click 'Check' to earn cool rewards!")
May 2, 2018