之前写过csv库的跳过第一行,去除表头的方法

这次是介绍 pandas库 to_csv()函数不读取第一行表头的方法。

非常简单,只要加上 header=None这个参数就可以了。

data.to_csv(filename,header=None)