TypeError: '<' not supported between instances of 'str' and 'int'

 

<不支持str實例和int實例之間的對比spa

 

birth是str類型code

2000是int類型blog

因此沒法對比,報錯input

 

1 birth = input('birth: ') 2 if birth < 2000: 3     print('00前') 4 else: 5     print('00後')

 

修改成:class

 

1 s = input('birth: ') 2 birth = int(s) 3 if birth < 2000: 4     print('00前') 5 else: 6     print('00後')
相關文章
相關標籤/搜索