I have two columns, one is a string, another is a list of strings.
How do I append the string to the list of strings?
What I tried:
df['Combined'] = df['string'] + df['ListOfStrings']
and
df['Combined'] = df['string'].to_list() + df['ListOfStrings']
Possible method:
Turn the string column into a list containing a single element, then try the method in my first attempt. But I haven't been able to figure out how to do this.