Hi! I have problems with step 25 and 27 (This is the function i’m having problems with. Help.)
def view_settings(test_settings):
if test_settings=={}:
return f"No settings available."
output='Current User settings:\n'
for key, value in test_settings.items():
output+=f"{key.capitalize()}: {value}\n"
return output
```[https://www.freecodecamp.org/learn/python-v9/lab-user-configuration-manager/build-a-user-configuration-manager](https://www.freecodecamp.org/learn/python-v9/lab-user-configuration-manager/build-a-user-configuration-manager)
If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Get Help > Ask for Help button located on the challenge.
The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
sorry to bother, i did it. i was putting a .strip() at the end cause there was an extra blank line but apparently it wasn’t necessary. Anyways, thank you very much.