欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

解决Python 异常TypeError: cannot concatenate 'str' and 'int' objects

时间:2020-11-02 17:10:08|栏目:Python代码|点击:

TypeError: cannot concatenate 'str' and 'int' objects

print str + int 的时候就会这样了

python + 作为连接符的时候,不会自动给你把int转换成str

补充知识:TypeError: cannot concatenate 'str' and 'list' objects和Python读取和保存图片

运行程序时报错,然后我将list转化为str就好了。

利用''.join(list)

如果需要用逗号隔开,如1,2,3,4则使用','.join(list)

Python中plt可以显示和保存图片,不能使用mping

import matplotlib.image as mpimg # mpimg 用于读取图片

开头import时加入

import matplotlib.pyplot as plt

from PIL import Image

打开用open('路径')

保存用a.save('路径')

上一篇:ansible作为python模块库使用的方法实例

栏    目:Python代码

下一篇:使用Python求解最大公约数的实现方法

本文标题:解决Python 异常TypeError: cannot concatenate 'str' and 'int' objects

本文地址:http://www.codeinn.net/misctech/18285.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有