可以使用pandas的read_excel()
函数来读取excel指定区域的内容,例如:df = pandas.read_excel(file_name, sheet_name=None, header=0, skiprows=0, index_col=0, skip_footer=0, usecols="A:D")
。
用pandas读取excel指定区域内容
最新推荐文章于 2025-03-18 21:01:37 发布
可以使用pandas的read_excel()
函数来读取excel指定区域的内容,例如:df = pandas.read_excel(file_name, sheet_name=None, header=0, skiprows=0, index_col=0, skip_footer=0, usecols="A:D")
。