Python 3:TypeError:'>' 'str'和'int'实例之间不支持

时间:2017-07-25 11:20:12

标签: python-2.7 python-3.6

我是Python的新用户。我最近从Python 2.7 to Python 3.6更改了,我在Python 2.7之前的代码中遇到了一行问题。请有人帮忙解决以下问题:

paidgrouped_large = paidgrouped.loc[paidgrouped['Gross Incurred Inf'].astype(int) > paidgrouped['Largeclaimcutoff'].astype(int), :].set_index('Claim', drop=True)

现在给了我错误:

  

TypeError: '>' not supported between instances of 'str' and 'int'

两列都只是数字列,没有空数据。 有没有人知道它为什么不起作用?

0 个答案:

没有答案