我是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'
两列都只是数字列,没有空数据。 有没有人知道它为什么不起作用?