鱼C论坛

 找回密码
 立即注册
查看: 2326|回复: 2

变量类型转换问题

[复制链接]
发表于 2019-2-28 13:06:46 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-2-28 13:15:17 | 显示全部楼层
write函数要求的是传入str吧
你将数据用str强制转换一下试试
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-2-28 13:47:15 | 显示全部楼层
我要写入数据到excel表,要转成int写入新建的excel表,请问在哪句代码里面改,怎么强制转换成int型写入到新建的excel表格中去呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 10:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表