pandas读取整数带小数点的解决办法

针对于读取的文件中有整数也有小数,读取的时候整数也带上了小数点
解决办法:

import pandas as pd
pd.read_csv(file, dtype=object)

你可能感兴趣的:(python,pandas,python,csv)