用pandas读取excel指定区域内容
时间: 2023-11-26 16:15:17 浏览: 87
使用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")``。
阅读全文