时间长了忘记list使用了,查看了下list输出没想到还遇到错误了。
代码:

planes = [64, 128, 256, 512]in_planes = planes[0:-1]
out_planes = planes[1:]
print("in_planes:" + in_planes)
print("out_planes:" + out_planes)

出现这样的问题:
类型错误:只能连接str(不是“列表”)到str

Traceback (most recent call last):File "demo.py", line 5, in <module>print("in_planes:" + in_planes)
TypeError: can only concatenate str (not "list") to str

解决办法:将list 转换为str即可。

in_planes = planes[0:-1]
out_planes = planes[1:]
print("in_planes:" + str(in_planes))
print("out_planes:" + str(out_planes))

参考:
https://blog.csdn.net/a136332462/article/details/106133033/

TypeError: can only concatenate str (not “list“) to str(报错解决办法)相关推荐

  1. TypeError: ‘NoneType‘ object is not callable--python报错解决办法

    报错为 翻译过来为:TypeError:"NoneType"对象不可调用 代码: def bibao_one():Jay = "哎哟不错哦"def bibao_ ...

  2. 报错解决:TypeError: Object type class 'str' cannot be passed to C code

    此文首发于我的个人博客:报错解决 TypeError Object type class 'str' cannot be passed to C code - zhang0peter的个人博客 下午在 ...

  3. TypeError: ‘builtin_function_or_method‘ object is not subscriptable 报错解决方法

    TypeError: 'builtin_function_or_method' object is not subscriptable 报错解决方法 参考文章: (1)TypeError: 'buil ...

  4. vue报错解决:Error in v-on handler (Promise/async): “TypeError: Cannot read properties ofundefined

    报错信息:[Vue warn]: Error in v-on handler (Promise/async): "TypeError: Cannot read properties of u ...

  5. TypeError object of type ‘type‘ has no len()—Python报错问题:

    翻译过来是类型为"type"的TypeError对象没有len(),我报错的代码是: https://blog.csdn.net/hanhanwanghaha宝藏女孩 欢迎您的关注 ...

  6. TypeError: Router.use() requires a middleware function but got a Object报错解决

    1.在运行nodejs-mongodb项目时,项目报错 TypeError: Router.use() requires a middleware function but got a Object ...

  7. vue-cli3的项目 CDN链接报错解决 Uncaught TypeError: Cannot read property 'prototype' of undefined at Object.

    Uncaught ReferenceError: iview is not defined 出现这个问题的原因是路径的问题 确保你的路径是正确的,或者是既全局引入了iview,又按需引入,会造成这样的 ...

  8. Uncaught TypeError: Cannot read properties of undefined (reading ‘push’) ---- vue-router报错

    坑点 在使用vue-router@4的时候,由于vue3中没有this.router这个写法,所以我就将解构router方法,放在了函数中,由于函数有作用域就报了这个错误:Uncaught TypeE ...

  9. #报错解决#TypeError Failed to execute ‘readAsText‘ on ‘FileReader‘ parameter 1 is not of type ‘Blob‘

    问题描述 在实现需求:批量下载的时候,返回的数据类型设置为blob $http({method: 'post',url: dataurl,data: bodyParam,headers: { 'Con ...

最新文章

  1. 语言模型自然语言处理[置顶] 哥伦比亚大学 自然语言处理 公开课 授课讲稿 翻译(四)...
  2. python软件开发-哪个开发软件可以写python啊,VS可以么?
  3. Luogu4926 倍杀测量者(二分答案+差分约束)
  4. 声明变量_如果同时声明多个变量
  5. 【特征工程】与【表示学习】
  6. c++异常处理的基本思想
  7. Oracle 估算数据库大小的方法
  8. 网络编程(part9)--socket套接字编程之TCP套接字
  9. 在HubSpot是如何应对Fat JAR困境的
  10. python37.dll可能与您正在运行_模块可能与您正在运行的Windows版本不兼容。检查该模块是否与regsvr32.exe的x86或x64...
  11. LeetCode:62. 不同路径(python、c++)
  12. 比特币区块链将分道扬镳、Libra苦难继续,2020区块链进入关键时期!
  13. PHP 空数组转Json字符串的问题
  14. 《炬丰科技-半导体工艺》 室温下等离子增强的中红外光电探测
  15. 北大软微计算机技术硕士复试,2016北大软微考研复试细节和名单.doc
  16. Visio Professional 2019 激活方法详解
  17. 串口调试助手fx2n_安信可串口调试助手
  18. 【入门】QQ聊天机器人--HelloWorld篇
  19. 眼见为实:关于微服务熔断这几个知识点,你可能理解错了
  20. 目前计算机的发展处于第五代,计算机应用基础.pptx

热门文章

  1. 电脑磁盘突然不见,用DiskGenius恢复数据方法
  2. grub加密与光盘修复模式修改root密码
  3. 计算机课件制作笔试试题,多媒体课件制作考试试卷
  4. 选择电阻要考虑哪些点?
  5. Elasticsearch跨集群数据迁移方案+代码操作
  6. 国产物联网操作系统有哪些,谁主沉浮?
  7. 计算机非笔试考试题,硕士研究生非笔试课程考核报告计算机测控网络系统__基于ATmega64的面粉厂粉尘及浓度的检测与控制.doc...
  8. PDM系统在饲料工程设计中的应用
  9. Html5_animation动画
  10. xlrd.biffh.XLRDError: No sheet named <‘Sheet1‘>