Tell us what’s happening:
I think I did exactly as the step asked. I commented out 10 lines of code and then added a pass for the function’s body. I already looked at the other post about this question and it still won’t run. What am I doing wrong?
Your code so far
/* User Editable Region */
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
pass
/* User Editable Region */
def main():
print(convert_to_snake_case('aLongAndComplexString'))
if __name__ == '__main__':
main()
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 15
Hello Sushrut,
I think it messed up the indentation somewhere. Could you reset it, and put the #
character right before each first character of the line (or just all , and make sure the pass
call is at the right place to match the function definition?