Let's say I have a dataframe that looks like this:
df2
A
0
I have a list that looks like this:
stuff = ['apples', 'oranges']
I want to add the records from my list into my data frame so that my output looks like this:
A
0 ['apples', 'oranges']
Any suggestions? I am not sure where to begin.