读取excel文件

# -*- coding: utf-8 -*-

import xlrd

def read_excel():

# 文件位置

    excel_file = xlrd.open_workbook(r'F:\小区参数规划\NeighborOutput_result.xlsx')

# 获取目标EXCEL文件sheet名

    sheets = excel_file.sheets()

for sheetin sheets:

# 打印sheet的名称,行数,列数

        print(sheet.name, sheet.nrows, sheet.ncols)

# 获取整行或者整列的值

        rows = sheet.row_values(2)# 第三行内容

        cols = sheet.col_values(1)# 第二列内容

        print(cols, rows)

# 获取单元格内容

        print(sheet.cell(1, 0).value)

print(sheet.cell_value(1, 0))

print(sheet.row(1)[0].value)

# 打印单元格内容格式

        print(sheet.cell(1, 0).ctype)

if __name__ =='__main__':

read_excel()

你可能感兴趣的:(读取excel文件)