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

Tell us what’s happening:

Save the result in a variable named snake_cased_string on the same level as the snake_cased_char_list variable…
i am not understating this step.
can any one guide me. what will be the next line of code

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:

# User Editable Region

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/122.0.0.0 Safari/537.36

Challenge Information:

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

you need to write your line of code inside the function, not outside

please suggest me the correct code line and position

indent it so that it is inside the function

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