用pandas读取excel指定区域内容
时间: 2023-11-26 12:21:28 浏览: 12
pandas读取excel文件
5星 · 资源好评率100%
可以使用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")``。
阅读全文