python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时)相关的知识,希望对你有一定的参考价值。
当我们编程时,有时会出现如下错误:TypeError: ‘>‘ not supported between instances of ‘str‘ and ‘int‘
如下图:
这是因为input()返回的数据类型是str类型,不能直接和整数进行比较,必须先把str转换成整型,使用int()方法:age = int(input ("请输入你的年龄:"))
改正之后为:
这样程序就达到了预期的效果了
以上是关于python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时)的主要内容,如果未能解决你的问题,请参考以下文章
python运行代码出现'ascii' codec can't decode byte 0xb4 in position 11: ordinal not in range(12
当安装第三方库的时候出现Python version 2.7 required, which was not found in the registry