Pandas中科学计数法的处理

1、在读取时处理

方法一:read_excel()中加入参数,converters={‘列名’:str}

方法二:read_excel()中加入参数,dtype=‘object’

2、在数据处理中处理

df[字段名] = df[字段名].astype(str)

附上Pandas.read_excel()参数详解链接:
https://zhuanlan.zhihu.com/p/142972462

你可能感兴趣的:(pandas,python,数据分析)