I have a dataframe that looks like this:

What I would love to do, is to turn the PTS and REB value into respective columns with each value underneath, like
PTS | REB
----------
14.29 | 5.71
Is this possible? I have intermediate experience with pandas, but through googling and the docs, it doesn't appear to be the easiest find.
Thanks!