Я проверил функцию подсчета «python» и обнаружил, что это целое число, но когда я пытаюсь проверить, больше ли оно определенного числа, он показывает мне, что это str
one = 0
two = 0
three = 0
for i in words:
i = str(i)
if (words.count(i) > one):
one = i
elif (words.count(i) > two):
two = i
elif (words.count(i) > three):
three = i
Ошибка:
if (words.count(i) > one):
TypeError: '>' not supported between instances of 'int' and 'str'