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

Tell us what’s happening:

I am not sure what the question is asking. To the best of my knowledge I am answering the question. I thought that I may have made a spelling error so I coppied the variables from the instructions. I do not know why my code is not allowing me to move to the next step. I go to Chatgpt when I get stuck. When I entered my 3 lines of code along with the directions it is telling me my code should work

Your code so far

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


# User Editable Region

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


# User Editable Region

Your browser information:

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

Challenge Information:

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

I think the test code does not want you to use a variable here - just print

You don’t need to declare a new variable. All you have to do is to print the variable convert_to_snake_case with the given string as an input:

print(variable(input))     

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