Есть два кадра данных.
Как объединить поэлементно?
Вы можете увидеть код здесь
df1 = pd.DataFrame(columns = ['string1', 'string2'])
df1.loc[len(df1), :] = ['Hello', 'This is Sam']
df1.loc[len(df1), :] = ['Good?', 'Are you free']
df2 = pd.DataFrame(columns = ['string1', 'string2'])
df2.loc[len(df2), :] = ['how are you?', 'from Canada']
df2.loc[len(df2), :] = ['morning', 'to have a talk?']
df1
string1 string2
0 Hello This is Sam
1 Good? Are you free
df2
string1 string2
0 how are you? from Canada
1 morning to have a talk?
#How to get the desired dataframe: [['Hello how are you?', 'This is Sam from Canada'], ['Good morning?', 'Are you free to have a talk?']]