Learn Python List Comprehension by Building a Case Converter Program - Step 15

Tell us what’s happening:

no matter which way i comment out the code(even tried adding a ‘#’ on every line, and add pass on top or below, it never accepts it, works fine but wont accept.

Your code so far


# User Editable Region

def convert_to_snake_case(pascal_or_camel_cased_string):
    '''snake_cased_char_list = []
    for char in pascal_or_camel_cased_string:
        if char.isupper():
            converted_character = '_' + char.lower()
            snake_cased_char_list.append(converted_character)
        else:
            snake_cased_char_list.append(char)
    snake_cased_string = ''.join(snake_cased_char_list)
    clean_snake_cased_string = snake_cased_string.strip('_')

    return clean_snake_cased_string'''
    pass

# User Editable Region

def main():
    print(convert_to_snake_case('aLongAndComplexString'))

if __name__ == '__main__':
    main()

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 OPR/107.0.0.0

Challenge Information:

Learn Python List Comprehension by Building a Case Converter Program - Step 15

Explain more , as i cant grasp the problem

It should work with # on each line

It helps if you select all the lines and use ctrl+/ which will comment them all at once.

I need to comment out the contents of the function, convert_to_snake_case, and add pass for this step. no matter how i comment it out it wont let me continue to the next step.

figured it out, just cant comment out the empty line in the function

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.