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