首页 > 其他 > 详细

[已解决]报错: TypeError: sequence item 0: expected str instance, int found

时间:2020-06-08 01:26:57      阅读:608      评论:0      收藏:0      [点我收藏+]

今天敲小例子,报了错TypeError: sequence item 0: expected str instance, int found

小例子

list1=[1,‘two‘,‘three‘,4]
print(‘ ‘.join(list1))

以为会打印1 two three 4

结果报了错

Traceback (most recent call last):
? File "<pyshell#27>", line 1, in <module>
? ? print(" ".join(list1))
TypeError: sequence item 0: expected str instance, int found

上网查了资料,说list包含数字,不能直接转化成字符串。

解决办法:

print(" ".join(‘%s‘ %id for id in list1))

即遍历list的元素,把他转化成字符串。这样就能成功输出1 two three 4结果了。

from: https://blog.csdn.net/laochu250/article/details/67649210

[已解决]报错: TypeError: sequence item 0: expected str instance, int found

原文:https://www.cnblogs.com/hankleo/p/13062699.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!