变量类型转换问题
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)
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 in sheetName:
a=sheet1Col(arr1)
if arr1 in brr:
d=sheet1_Row(arr1)
for c in range(len(crr)):
if crr in err:
b=sheet1Row(t,crr)
tt=sheet1.cell_value(d,crr.index(crr)+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') write函数要求的是传入str吧
你将数据用str强制转换一下试试 我要写入数据到excel表,要转成int写入新建的excel表,请问在哪句代码里面改,怎么强制转换成int型写入到新建的excel表格中去呢?
页:
[1]