Attempt # 2 at writing this correctly, here is what my dataset looks like and you can see my desired output below.
What would be the best way to achieve my desired output?
Data Set
Name Position Scores
0 Jim G [5, 6]
1 Bill SG NaN
2 Tim PG [19, 22]
3 Bob SF [2, 3]
Desired Output
Name Position Scores
0 Jim G 5
1 Jim G 6
2 Bill SG NaN
3 Tim PG 19
3 Tim PG 22
.....