can only concatenate str (not "int") to str

2025-10-27 14:24:04

1、首先翻译下报错的英文,只能把字符串和字符串连接在一起(而不是整型)

can only concatenate str (not

2、接着定位发生报错的文件行号和语句

can only concatenate str (not

3、我们做一下修改,这里把整型11改成字符串11

can only concatenate str (not

4、这次运行就正常了,不再报错

can only concatenate str (not

5、还要些小伙伴遇到的是另一个报错,看着不一样,其实是一个意思

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

can only concatenate str (not

6、前面那个错误是因为用字符串加了整型,这个报错是因为你用整型去加了字符串

can only concatenate str (not

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢