开发者社区> 问答> 正文

python怎么打开excel文件夹路径

python怎么打开excel文件夹路径

展开
收起
云计算小粉 2018-05-10 20:09:59 4923 0
2 条回答
写回答
取消 提交回答
  • github.com/xuri

    推荐一个功能丰富、兼容性好、高性能的 Excel 文档基础库 Excelize:https://github.com/xuri/excelize https://xuri.me/excelize/images/excelize.svg

    2020-12-14 10:37:02
    赞同 2 展开评论 打赏
  • 阿里云ping https://ping.gaomeluo.com/aliyun/

    python 读取excel文件

    def readexcel(file,sheet_index=0):

    #parameters:file:文件路径
    #sheet_index: 读取的工作表索引
    #return:二维数组
    workbook = xlrd.open_workbook(file)
     # all_sheets_list = workbook.sheet_names()
    # print("本文件中所有的工作表名称:", all_sheets_list)
    # 按索引读取工作表
    sheet = workbook.sheet_by_index(sheet_index)
    print("工作表名称:", sheet.name)
    print("行数:", sheet.nrows)
    print("列数:", sheet.ncols)
    
    # 按工作表名称读取数据
    # second_sheet = workbook.sheet_by_name("b")
    # print("Second sheet Rows:", second_sheet.nrows)
    # print("Second sheet Cols:", second_sheet.ncols)
    # 获取单元格的数据
    # cell_value = sheet.cell(1, 0).value
    # print("获取第2行第1列的单元格数据:", cell_value)
    data = []
    for i in range(0, sheet.nrows):
        data.append(sheet.row_values(i))
    return data
    

    调用函数:

    readexcel('C:UsersqslDesktopa.xlsx')
    居然报错:

    SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
    解决方案:—路径问题
    ①readexcel('C:\Users\qsl\Desktop\a.xlsx')
    ②readexcel(r'C:UsersqslDesktopa.xlsx')

    2019-07-17 22:19:59
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载