当前位置: 代码迷 >> 综合 >> Python学习(二)常见问题(5):TypeError: unsupported operand type(s) for +: 'int' and 'str'
  详细解决方案

Python学习(二)常见问题(5):TypeError: unsupported operand type(s) for +: 'int' and 'str'

热度:97   发布时间:2023-12-01 16:40:05.0

Python学习(二)常见问题(5):TypeError: unsupported operand type(s) for +: 'int' and 'str'

 

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

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

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

解决方法:给键入的数,声明整数

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

执行结果

  相关解决方案