标签: python python-3.x dataframe
我正在Python 3中运行此代码。
fwds_margins = fwds_margins[(fwds_margins.index >= 10)]
它给了我这个错误:
TypeError: '>=' not supported between instances of 'str' and 'int'
之前曾在Python 2中运行过它,然后将其移至Python3并出现了此错误。
答案 0 :(得分:1)
是否将fwds_margins.index转换为int?
fwds_margins.index