Learn Python List Comprehension By Building a Case Converter Program - Step 13

Tell us what’s happening:

I am doing what the test is saying ‘You should write a if clause to check whether __name__ == '__main__' evaluates to True or not. Don’t forget the colon at the end and use pass to fill the if body.’ but when i try doing that it throws the same error every time.

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():
    print(convert_to_snake_case('aLongAndComplexString'))
    if __name__ == '__main__':
        pass

/* 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

Challenge Information:

Learn Python List Comprehension By Building a Case Converter Program - Step 13

Hello Smayan,

This if statement needs to be outside the main function.

2 Likes

Oh thank you so much there.

1 Like

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