pandas 读excel中的长数字时,即使excel中已经设置为文本,读进df后也会自动变成科学计数法。本篇博客介绍解决方法 源数据: import pandas as pd data_path = r"C:\Users\Haley\Desktop\order.xlsx" data = pd.read_excel(data_path) data.head() 结果: 解决方法&#