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

报错原因:input()输入的是字符串,当输入数字时,类型不匹配

解决方法:int(input())

原文地址:https://www.cnblogs.com/zhongllmm/p/13293608.html