This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source of data: https://www.arrs.run/ | |
| # This dataset has race times for women 10k runners from the Association of Road Racing Statisticians | |
| import re | |
| import datetime | |
| def get_data(): | |
| """Return content from the 10k_racetimes.txt file""" | |
| with open('10k_racetimes.txt', 'rt') as file: | |
| content = file.read() |