码迷,mamicode.com
首页 > 编程语言 > 详细

python

时间:2018-08-31 21:15:21      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:字符串   例子   error   col   recent   error:   lis   ref   art   

https://blog.csdn.net/funnyPython/article/details/78141649

TypeError: sequence item 0: expected str instance, int found

小例子:

a = [1,2,3,1]
print( .join(a))

以为会打印 1 2 3 1 
结果报了错

Traceback (most recent call last):
  File "C:/Users/Administrator/Desktop/onetest.py", line 188, in <module>
    print( .join(a))
TypeError: sequence item 3: expected str instance, int found

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

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

即遍历list的元素,把他转化成字符串。这样就能成功输出1 2 3 1了。

python

标签:字符串   例子   error   col   recent   error:   lis   ref   art   

原文地址:https://www.cnblogs.com/xyao1/p/9567595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!