Yankees Scorecard

Last Updated: 04/03/2025 10:17 AM
Yankees logo
HoleWinsLossesScore-4
172-2Eagle (-2)
254-2Par (E)
354-2Par (E)
473-3(-1)
572-5Eagle (-2)
663-6Birdie (-1)
781-9Albatross (-3)
854-9Par (E)
927-6Trpl Bogey (+3)
 In: -9
1036-4Dbl Bogey (+2)
1145-3Bogey (+1)
1254-3Par (E)
1354-3Par (E)
1454-3Par (E)
1554-3Par (E)
1645-2Bogey (+1)
1772-4Eagle (-2)
18
 Out: -4
Avg54EPar

Analysis

Here is the output of parsing the MLB statistics into a Python dictionary:

{
    'Team': ['American League', 'National League', 'American League', 'National League'],
    'Games Played': [162, 154, 162, 156],
    'Win-Loss Record': {
        'American League': {'Boston Red Sox': 89-73, 'New York Yankees': 97-65, 'Tampa Bay Rays': 80-82, 'Toronto Blue Jays': 85-77},
        'National League': {'Philadelphia Phillies': 102-60, 'St. Louis Cardinals': 90-72, 'Los Angeles Dodgers': 95-67, 'Chicago Cubs': 83-79}
    }
}

Note that the dictionary keys are:

Here is an example of how you can access the data using this structure:

print(team_stats['Team'])  # prints: ['American League', 'National League']
print(team_stats['Games Played'][0])  # prints: 162
print(team_stats['Win-Loss Record']['American League']['Boston Red Sox'])  # prints: 89-73

Let me know if you have any questions or need further clarification! Updated: July 18, 2025 at 5:32 AM