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

Tell us what’s happening:

It appears to be an error in this case, by the given instructions icant figure it out. thanks!

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

    snake_cased_char_list = []

# User Editable Region

    return ''.join(snake_cased_char_list).strip("_")

# User Editable Region


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

main()

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

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

Welcome to our community!

Change the double quotation marks surrounding the underscore with single quotation ones.

1 Like

Use apostrophes instead of double quotes where you put .strip(“_”)