python当出现 not supported between instances of ‘str’ and ‘int’ 的处理方法详解编程语言

当我们编程时,有时会出现如下错误:TypeError: ‘>’ not supported between instances of ‘str’ and ‘int’

str : 字符串

int :整型

如下图:

python当出现 not supported between instances of 'str' and 'int' 的处理方法详解编程语言

 这是因为input()返回的数据类型是str类型,不能直接和整数进行比较,必须先把str转换成整型,使用int()方法:age = int(input (“请输入你的年龄:”))

 改正之后为:

python当出现 not supported between instances of 'str' and 'int' 的处理方法详解编程语言

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/17760.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论