df = pd.read_excel(path, index_col=0).astype(str)
print(df.columns.dtype) # int64 没有改变col的数据类型
# 想要列名成为第一行
df = pd.read_excel(path, header=None).astype(str)
print(df)
# print(df.columns.dtype) # int64 没有改变col的数据类型
df = pd.read_excel(path, index_col=0).astype(str)
print(df.columns.dtype) # int64 没有改变col的数据类型
# 想要列名成为第一行
df = pd.read_excel(path, header=None).astype(str)
print(df)
# print(df.columns.dtype) # int64 没有改变col的数据类型
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M