Learn Interfaces by Building an Equation Solver - Step 67

Tell us what’s happening:

I alligned the string like the instruction asked, but the left parenthesis won’t go with the rest of the string, what can I make to solve this?

Captura de tela 2025-10-23 133622

Your code so far

# User Editable Region

            details_list = [
    f'concavity = {concavity:>14}',
    f'{min_max} = {f"({x:12.3f}, {y:.3f})":>14}']

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

Challenge Information:

Learn Interfaces by Building an Equation Solver - Step 67

Hi @Pegetti

The seed code already contains the round braces.

Happy coding

please leave the coord variable where it is

in your current code, there is one piece of the code after the equal sign that is not right aligned

I should only allign the concavity variable?

like this:

details_list = [f'concavity = {concavity:>9}', f'{min_max} = {coord}']

screenshot (2)

Align with the dashes in Details.

Happy coding

1 Like