错误1:
Traceback (most recent call last):
File "D:/workspace/PythonWorkspace/02_分支/02_判断年龄改进版.py", line 7, in <module>
if age >= 18:
TypeError: '>=' not supported between instances of 'str' and 'int'
错误分析:
这段描述的意思是 ">=" 两侧的数据类型不能是 "str" 和 "int"
解决办法:
应该把数据类型调整为 int 类型