今天敲小例子,报了错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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2022-12-23
  • 2021-10-15
  • 2022-12-23
  • 2021-07-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-05
  • 2021-12-31
  • 2022-12-23
  • 2021-12-27
  • 2021-09-25
  • 2022-12-23
相关资源
相似解决方案