Python TypeError: unsupported operand type(s) for +: ‘int‘ and ‘str‘

在键入数值进行相加运算时,报了这样一个错误

类型错误:不支持操作类型为整数和字符串

错误分析:sum=sum+input() 未被系统识别,导致程序错误

解决方法:给键入的数值定义,声明为整数

sum=sum+int(input()) 即可

执行结果:

例二:

Python TypeError: unsupported operand type(s) for +: ‘int‘ and ‘str‘_第1张图片

 

你可能感兴趣的:(Python,python,开发语言)