To display the number of runners from each country in the race
DataFrame, you would use the following code:
race["country"].value_counts()
This command will count the occurrences of each unique value in the "country" column of the race
DataFrame, effectively giving you the number of runners from each country.