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

Tell us what’s happening:

I don’t understand why my code doesn’t pass. I have checked videos and other resources that have written the exact same thing.

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()

# User Editable Region




# 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/126.0.0.0 Safari/537.36 Edg/126.0.0.0

Challenge Information:

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

Take another look at the example in instructions. join method requires one argument, but in the code above it’s not getting any.

1 Like