我的数据框中有一个文本列,看起来像这样
col_name
Row 1 My name is John
Row 2 I live in London
Row 3 I work for an IT firm
Row 4 I travel once in a month
现在我希望将所有四行中的文本组合为列表中的多个元素
output_list = ["My name is John","I live in London","I work for an IT firm","I travel once in a month"]
如何在 Python 中创建上述格式的输出列表