- 此问题在此处已有答案**:
Python pandas: how to specify data types when reading an Excel file?(8个答案)
2天前关闭。
我用python通过panda读取excel文件。
我的问题是,我缺少前导零,我不能只填充他们到一个特定的长度,因为它总是变化。
示例:001,0001,0020
这是我的代码读取数据:
def readDataFromFile(self, file):
try:
df = pd.read_excel(file)
list = df.values.tolist()
print(f'{file} >> Read')
return list
except:
print('No input or wrong input given')
return
1条答案
按热度按时间w41d8nur1#
使用
dtype
作为read_excel
函数的参数,以防止Pandas将字符串转换为数字:没有
dtype
:使用
dtype
: