如何将 csv 文件的一列转换为 Python 中的 txt 文件?

How do I convert one column of a csv file to a txt file in Python?

我在 csv 文件中有一个特定的列,我想将该列的每一行作为换行符写入同一个 txt 文件中。如果有帮助,我正在使用 Panda。我不太明白如何遍历一个特定列的行。

这应该有效:

dataframe[colname].to_csv('filepath.txt', sep="\n", index=False)

如果您不需要该 .txt 文件中的列名称,请添加 header = False