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的数据类型