Python报错TypeError: '<' not supported between instances of 'str' and 'int'
1n=input()2ifn>=100:print(int(n)/10)3else:print(int(n)*10)报错内容:Traceback(mostrecentcalllast):File"1.py",line12,inifn>=100:print(int(n)/10)TypeError:'>='notsupportedbetweeninstancesof'str'and'int'***Re