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

Tell us what’s happening:

I should join the characters in the snake_cased_char_list list into a string using the .join() method and assign the string to a variable named snake_cased_string after the for loop but I couldn’t figure out what am I doing wrong?

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)

# User Editable Region

snake_cased_char_list = []
snake_cased_string = ''.join(snake_cased_char_list)

# 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

Challenge Information:

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

Why do you set snake_cased_char_list as an empty list here?
Also, your code should be indented, as it’s part of your function.

I fixed it thank you!!

2 Likes

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