Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Conversion from CamelCase by zuza456
def from_camel_case(name):
#replace this for solution
changed = ''
for i in name:
if i.isupper():
changed += '_' + i.lower()
else:
changed += i
return changed[1:]
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!")
Nov. 18, 2018