Adding a marker to a boxplot to highlight an individual value

Labels of individual points in boxplot this forum didn’t really help me but my question is similar so i’m just trying my luck

     fig = go.Figure()
     for column in course_data.columns:
            fig.add_trace(go.Box(y=course_data[column], name=column)

currently, this is the code that i used to build this set of boxplots. basically, the set of boxplots is from a dataframe called course_data which displays the scores for different tests (columns) for all its trainees (rows)

i’m wondering if there’s a way to add a marker to denote individual points for each boxplot. in other words, i’d like to indicate the scores of an individual trainee for in the set of boxplots.

how should i go about this?