I have a Pandas DataFrame in Python such as this:
       Group     Pre/post    Value
0         A        Pre         3
1         A        Pre         5
2         A        Post       13
3         A        Post       15
4         B        Pre         7
5         B        Pre         8  
6         B        Post       17
7         B        Post       18
And I'd like to turn it into a different table such as:
      Group       Pre      Post
0       A       3         13
1       A       5         15
2       B       7         17
3       B       8         18
I tried pivoting with df.pivot(index='Group', columns='Pre/post', values='Value') but since I have repeated values and order is important, it went traceback
 
    