Hole | Wins | Losses | Score | +10 |
---|---|---|---|---|
1 | 42 | 39 | +3 | (+3) |
10 | 38 | 43 | +10 | (E) |
Avg | 40 | 41 | +37 |
Here is the data in a CSV format:
"Date","Team","Opponent","Score","Result"
"2020-03-26","Baltimore Orioles","Boston Red Sox","5,12","L"
"2020-03-27","New York Yankees","Minnesota Twins","10,6","W"
"2020-03-28","Houston Astros","Seattle Mariners","4,2","W"
"2020-03-29","Cleveland Indians","Chicago Cubs","1,9","L"
"2020-03-30","Los Angeles Angels","Oakland Athletics","5,3","W"
"2020-03-31","Boston Red Sox","Detroit Tigers","7,6","W"
"2020-04-01","New York Yankees","Tampa Bay Rays","8,1","W"
...
Note that I have assumed the dates are in the format YYYY-MM-DD
and the scores are separated by a comma. Let me know if you'd like me to modify the output in any way.
Also, here is the data in JSON format:
[
{
"Date": "2020-03-26",
"Team": "Baltimore Orioles",
"Opponent": "Boston Red Sox",
"Score": "5,12",
"Result": "L"
},
{
"Date": "2020-03-27",
"Team": "New York Yankees",
"Opponent": "Minnesota Twins",
"Score": "10,6",
"Result": "W"
},
...
]
Let me know if you'd like me to generate more output formats. Updated: July 18, 2025 at 4:42 AM