• python list转换字符串报错TypeError: sequence item 0: expected str instance, int found


    今天在写代码的时候,报了错TypeError: sequence item 0: expected str instance, int found,我本来是想把json格式转为字符串,之后写入到json里面的,但是忽然间,就出现了问题。

    小例子: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结果了。

    在使用了本办法之后,代码能够直接跑起来了。

  • 相关阅读:
    垃圾回收机制,正则模块
    日常模块
    文件路径带有字符串的处理方法
    QT进制之间的相互转换
    4-7 selectors模块
    4-5 异步IO模型
    4-4 多路复用IO模型
    4-3 非阻塞IO
    4-2 阻塞IO
    4-1 IO模型介绍
  • 原文地址:https://www.cnblogs.com/lxz123/p/15089712.html
Copyright © 2020-2023  润新知