df = pd.read_csv('C:/Users/ymx19/Desktop/EHS/Location/results/Batch3_exclude_enterprise_wenran/first 100 - attribute/ABM.csv')
list_2 = ['a','b','c']
df.at[0, 'Attribute_consolidated'] = list_2
error code: ValueError: setting an array element with a sequence.
The goal is to add a list into pandas DataFrame cell. I did a similar thing before and it worked, but somehow the code is no longer working in this case.