pandas.read_excel默认读取第一行为列名
headerint, list of int, default 0
Row (0-indexed) to use for the column labels of the parsed DataFrame. If a list of integers is passed those row positions will be combined into a
MultiIndex
. Use None if there is no header.
但是 pandas.DataFrame默认没有列名, 第一行就是第一行 也没有可以设置列名为第一行的属性 必须自己编函数
标签:第一行,列名,excel,DataFrame,默认,pandas From: https://blog.51cto.com/u_16055028/8840387