python3读取excle并进行简单计算

python3

脚本:

import xlrd
def read_excel():
    # 打开文件
    workbook = xlrd.open_workbook(r'G:\fee.xls')
    sheet=workbook.sheet_by_name('fee')
	#获取整行或者整列的值
    rows=sheet.row_values(1)#第2行内容
    cols=sheet.col_values(0)#第1列内容
    print (cols,rows)
	#获取单元格内容
    print (sheet.cell(1,0).value)
    print(sheet.cell(1, 1).value)

    #数字相加
    print(sheet.cell(1, 0).value  + sheet.cell(1, 1).value)
    #报错:unsupported operand type(s) for +: 'Cell' and 'float'
    #print(sheet.cell(1, 0) + sheet.cell(1, 1).value)

    avrFee = sheet.cell(1, 0).value + ((sheet.cell(1, 2).value/sheet.cell(1, 3).value)*sheet.cell(1, 1).value)/sheet.cell(1, 4).value

    print("平均费用:" + str(avrFee) + "元")

    #print (sheet.cell_value(1,0))
    #print (sheet.row(1)[0].value)
    #打印单元格内容格式
    #print (sheet.cell(1,0).ctype)

if __name__ == '__main__':
    read_excel()

执行即算AA值

然后我发现:

python3读取excle并进行简单计算_第1张图片

。。。excel能简单执行。。那我为什么还要写个脚本。。。。==

你可能感兴趣的:(Python)