format_row(name, score) that returns a report-style line where name is left-justified in a 12-character field and score is right-justified in a 5-character field, e.g. "Alice 92" (as one string). This mimics building an aligned console report.format_row("Alice", 92)'Alice 92'
"Alice" padded to 12 chars left-justified, then 92 right-justified in 5 chars.
format_row("Bo", 7)'Bo 7'
"Bo" padded to 12 chars, then 7 right-justified in 5 chars.
Use an f-string format spec: f"{name:<12}{score:>5}".