Learn Interfaces by Building an Equation Solver - Step 67

Tell us what’s happening:

details_list = [f’concavity = {concavity:>12}‘, f’{min_max} = {coord:>12}']

tried to align them accordingly but the the {coord:>12} does not work.

Your code so far

# User Editable Region

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

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36

Challenge Information:

Learn Interfaces by Building an Equation Solver - Step 67

Don’t you just need to add the number of characters in
(-1.000, 0.000) to the additional characters it would take to align that value to the right for coord?

Figured it out, thanks!