problem z cytowaniem pandas to_csv

Jestem dość nowy w pandach Pythona, ale mam problem z prawidłowym cytowaniem wyjścia to_csv.

import pandas as pd

text = 'this is "out text"'
df = pd.DataFrame(index=['1'],columns=['1','2'])
df.loc['1','1']=123
df.loc['1','2']=text
df.to_csv('foo.txt',index=False,header=False)

Dane wyjściowe to:

123, „to jest” „out text” „”

Ale chciałbym:

123, to jest „out text”

Czy ktoś wie, jak to zrobić?

questionAnswers(4)

yourAnswerToTheQuestion