python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时),pythoninstances,当我们编程时,有时会
python的强制转换(当出现 not supported between instances of 'str' and 'int' 的错误时),pythoninstances,当我们编程时,有时会
当我们编程时,有时会出现如下错误: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抓图的8种方式,并发python抓图8种,本文
- Python系列之——利用Python实现微博监控,python,0x00 前言
- [Python] Python 学习 - 可视化数据操作(一),python可视化
- Python----DFS---骑士周游问题,,这篇文章将会将一个数
- Python中PIL及Opencv转化,pythonpilopencv,转载:http://
- Python3基础 小技巧 为模块更换名字 import 模块名 as 别名
- Python模块学习 - openpyxl,pythonopenpyxl,openpyxl模块
- python3使用ddt框架进行外部传参,python3ddt,ddt:python
- Python2和Python3共存安装robotframework,,1、下载Python
- python中文编码&json中文输出问题,,python2.x版
评论关闭