将字符串转换为整数 - TypeError:'>' ' str'的实例之间不支持和' int'

时间:2017-03-20 09:15:39

标签: python python-3.x

我出现错误,因为>' str'的实例之间不支持>和' int'。如果在secretNum>中猜测[1],那就是它所说的部分。 1&#39 ;.我意识到这是将字符串与整数进行比较,但我不知道如何改变它。任何帮助?

getSelectedView()

1 个答案:

答案 0 :(得分:1)

guess[1] in secretNum > 1等于guess[1] in secretNum and secretNum > 1secretNum似乎是字符串,因此and后的比较无效(str > int

如果您想计算guess[1] secretNumber的{​​{1}}次,您应该使用secretNumber.count(guess[1])