I have survey data that was exported as a Vertical dataframe. Meaning for everytime a person responded to 3 questions in the survey, their row would duplicate 3 times, except the content of the question and their answer. I am trying to transpose/pivot this data so that all 3 questions are displayed in a unique column so that their responses are also displayed in each column instead of another row, alongside their details like ID, Full Name, Location, etc...
Here is what it looks like currently:
    ID      Full Name   Location   Question                               Multiple Choice Question Answers 
   12345   John Smith     UK    1. It was easy to report my sickness.             Agree
   12345   John Smith     UK    2. I felt ready to return from Quarantine.        Neutral
   12345   John Smith     UK    3. I am satisfied with the adjustments made.      Disagree
    ..          ...          ...                   ...         ...   
   67891  Jane Smith      UK    1. It was easy to report my sickness.             Agree
   67891  Jane Smith      UK    2. I felt ready to return from Quarantine.        Agree
   67891  Jane Smith      UK    3. I am satisfied with the adjustments made.      Agree      
and this is how I want it:
    ID      Full Name   Location  1. It was easy to report my sickness. 2. I was satisfied with the support I received.  3. I felt ready to return from Quarantine.
   12345   John Smith     UK         Agree                                  Neutral                                          Disagree
   67891   Jane Smith     UK         Agree                                  Agree                                            Disagree
Currently I'm trying to use this code to get my desired output but I can only get the IDs and Full Names to isolate without duplicating and the other columns just show up as individual rows.
column_indices1 = [2,3,4]
df5 = df4.pivot_table(index = ['ID', 'Full Name'], columns = df4.iloc[:, column_indices1], \
                      values = 'Multiple Choice Question Answer', \
                      fill_value = 0)
 
    

