|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
Traceback (most recent call last):
File "C:\Documents and Settings\Administrator\桌面\h.py", line 62, in <module>
if tt>0:
TypeError: unorderable types: str() > int()
tt变量中有str类型的空值,也有float类型的数值,怎么让tt变成整数型,新手刚入门,请教各位大神。
以下是代码:
import xlrd
import os
from xlutils.copy import copy
from xlwt import Style
table1=xlrd.open_workbook(r'E:\zhuomian\新建文件夹\销售汇总表.xlsm')
table2=xlrd.open_workbook(r'E:\zhuomian\新建文件夹\2018.12月产成品出入库 (1).xlsm')
sheet1=table1.sheet_by_index(0)
sheetName=table2.sheet_names()
wb=copy(table2)
#sheet3=table1.sheet_by_index(0).name
cols=sheet1.ncols
brr=sheet1.col_values(0)
crr=sheet1.row_values(1)
crr.pop(0)
def sheet1Col(total): #获取table2的‘合计’所在行数
cols=table2.sheet_by_name(total)
frr=cols.col_values(0)
res=frr.index('合计')
return res
def sheet1Row(total,prod): #获取table2的品名所在的列数
rows=table2.sheet_by_index(total)
frr=rows.row_values(1)
res=frr.index(prod)
return res
def sheet1_Row(prod): #获取table1的客户所在的行数
rows=table1.sheet_by_index(0)
frr=rows.col_values(0)
res=frr.index(prod)
return res
arr1=[]
tt=0
for i in range(3,len(brr)):
arr1.append(brr[i])
arr1.pop()
for t in range(len(arr1)):
sheet3=table2.sheet_by_index(t)
err=sheet3.row_values(1)
jrr=sheet3.col_values(0)
err.pop(0)
err.pop()
if arr1[t] in sheetName:
a=sheet1Col(arr1[t])
if arr1[t] in brr:
d=sheet1_Row(arr1[t])
for c in range(len(crr)):
if crr[c] in err:
b=sheet1Row(t,crr[c])
tt=sheet1.cell_value(d,crr.index(crr[c])+1)
ws=wb.get_sheet(t)
ws.write(a,b,tt)
if tt>0:
for n in range(2,len(jrr)-1):
ws.write(n,b,tt/(len(jrr)-3))
err=[]
jrr=[]
wb.save('file.xls') |
|