解决Pandas读取文件丢失数据前的0问题


只需加上dtype=object即可,亲测可行

pd.read_csv(paths, header=None, delimiter=',', dtype=object)

相关