Context. Extract a single column from a DataFrame for further analysis.
Your task. Write get_scores(df) that returns the score column as a pandas Series (not a single-column DataFrame).
Example. A df with name and score → the score Series.
Notes. df["score"] returns a Series; df[["score"]] (double-bracket) would return a DataFrame — we want the first. Empty df → empty Series.