Tell us what’s happening:
I am having a mental block and can’t quite tell what it is i am missing. I am getting the following error.
You should call convert_to_snake_case() inside the main() function and pass aLongAndComplexString as input to the function.
I believe I am calling the convert function properly and I am using the string as the input to pass to the function. Initially I had forgotten the quotation marks and had misspelled parts of the string. As far as I can tell I am doing as the prompt says but I still get the same error. Any tips or or help to point me in the direction of what could be wrong would be a huge help.
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(clean_snake_cased_string)
# 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 12