I have a table like this:
vstid vstrseq date page timespent
1 1 1/1/16 a 20.00
1 1 1/1/16 b 3.00
1 1 1/1/16 c 131.00
1 1 1/1/16 d .000
1 1 1/1/16 a 3.00
I want this like:
A B date a b c d
1 1 1/1/16 23 3 131 0
How can I get it done in python? Any suggestions?