当前位置:   article > 正文

python导入特定的sheet页,行,列数据_python读取指定sheet

python读取指定sheet

示例中的excel数据有多个sheet多行多列数据,现在想读取特定sheet页,特定的行列数据

查询指定sheet页内容

  1. import pandas as pd
  2. df = pd.read_excel(r'C:\Users\12133\Desktop\test.xlsx')
  3. #不加参数默认为第一个sheet页内容
  4. print(df.head())

 

  1. import pandas as pd
  2. df = pd.read_excel(r'C:\Users\12133\Desktop\test.xlsx',sheet_name=[0,1,'测试sheet3'])
  3. #sheet_name() 第一页数据
  4. #sheet_name = 1 第二个sheet页数据
  5. #sheet_name = "用户借书记录" 指定名称的sheet页数据
  6. #sheet_name = [0,1,"用户借书记录"] 取第1页,第2页和指定名称的sheet页数据
  7. print(df)

 查询指定行列内容

  1. import pandas as pd
  2. def print_excel():
  3. # Use a breakpoint in the code line below to debug your script.
  4. pd.set_option('display.unicode.east_asian_width',True)
  5. df1 = pd.read_excel(r'C:\Users\12133\Desktop\test.xlsx',sheet_name = ['用户购买记录'],nrows=1,usecols=[0,2])
  6. #nrows:导入前多少行
  7. #usecols[0,2]:导入指定的第1行和第3行数据
  8. #usecols['用户名','支付金额(元)']:导入指定的名称行的数据
  9. print(df1) #head():默认输出前5
  10. # Press the green button in the gutter to run the script.
  11. if __name__ == '__main__':
  12. print_excel()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/768623
推荐阅读
相关标签
  

闽ICP备14008679号