def get_pos(rel_dates):
"""returns the positions of the dates closest to 25%, 50%, and 75%"""
pos = [0] # first element
...
def get_pos(rel_dates):
"""returns the positions of the dates closest to 25%, 50%, and 75%"""
pos = [0] # first element
...
The function takes an list ...