Python报错:TypeError:not supported between instances of 'str' and 'int'

Python报错:TypeError: ‘<’ not supported between instances of ‘str’ and ‘int’
报错原因:字符串(str)未转化便和整数(int)进行比较
解决办法:转换即可

例如:
错误:
name = input(‘我是小hi,请问你叫什么名字?\n’)
age = input(‘我8岁了,你呢?\n’)
if(age < 30):
print(f"你才{age}啊!")
print(“你真年轻,如花似玉的年龄!”)
正确:
name = input(‘我是小hi,请问你叫什么名字?\n’)
age = input(‘我8岁了,你呢?\n’)
age = int(age)
if(age < 30):
print(f"你才{age}啊!")
print(“你真年轻,如花似玉的年龄!”)

你可能感兴趣的:(python,bug)