I have data in the following structure in pandas dataframe
User day games_won games_draw games_lost tips_taken
user1 1 10 4 2 5
user2 1 16 7 1 3
user1 2 2 8 7 0
And I want it to be converted into the following format
User day games_won_day1 games_won_day2 games_draw_day1 games_draw_day2 games_lost_day1 games _lost_day2 tips_taken_day1 tips_taken_day2