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

Tell us what’s happening: learn-list-comprehension-by-building-a-case-converter-program/step-12

Describe your issue in detail here.
For some reason my code below doesnt seem to work when i have all my parameters jotted down (error: Sorry, your code does not pass. Keep trying.

You should call convert_to_snake_case() inside the main() function and pass 'aLongAndComplexString' as input to the function.)

Your code so far

def main():
snake_case_string = convert_to_snake_case(‘aLongAndComplexString’)
print(snake_case_string)

main()

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():
    snake_case_string = convert_to_snake_case('aLongAndComplexString')
    print(snake_case_string)

main()


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

Challenge Information:

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

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

Welcome to the forum @james.simon24

The print call is convert_to_snake_case(), pass 'aLongAndComplexString' as input to the function.

Happy coding

2 Likes

make these a single line, where the function call is inside the print statement

2 Likes

Hi,
Thank you for your query.

The solution is to write the print without giving any variable. It is as follows:

1 Like

Hey @KishYuvvraaj , welcome to the forum!

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

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