What exactly am I hetting wrong here?
def main(data):
print (convert_to_snake_case(data))
string = 'aLongAndComplexString'
main(string)
Sorry, your code does not pass. You’re getting there.
You should callconvert_to_snake_case()
inside themain()
function and pass'aLongAndComplexString'
as input to the function.