Inside the same f-string, display the points difference using the expression player_1_score - player_2_score between curly braces {}.
player_1_score - player_2_score
{}
Make sure to pick { followed by player_1_score and then -, player_2_score, }.
{
player_1_score
-
player_2_score
}