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

Tell us what’s happening: it tells me Inside the main() function, replace pass with a convert_to_snake_case() call. Pass the string aLongAndComplexString as input to the function and print out the output using the print() function. I tried researching but idk what I’m 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)
    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():
    convert_to_snake_case('aLongAndComplexString')
    print(convert_to_snake_case)

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Safari/605.1.15

Challenge Information:

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

Call the function with an argument successfully :white_check_mark:
But the result doesn’t go anywhere

You’re passing the name of the function to print() but there’s no argument, so there’s no result.

You need to combine those 2 lines into 1.

print(function(argument))
1 Like

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