I have a list consisting of several string as shown below list=['abc','cde','fgh']
I want to add all the values to a particular index of dataframe. I am trying it with the code
df1.ix[1,3]=[list]
df1.to_csv('test.csv', sep=',')
I want in dataframe at poistion 1,3 all values to be inserted as it is ['abc','cde','fgh']
. I don't want to convert it to string or any other format. But it is giving me error. what I am doing wrong here