美文网首页
python中列表转成字符串方法

python中列表转成字符串方法

作者: 程序雷人猿 | 来源:发表于2019-12-25 11:42 被阅读0次
    actors_list = ['希斯·莱杰', '杰克·吉伦哈尔', '米歇尔·威廉姆斯']
    print(','.join(actors_list))
    

    使用join()方法将列表中每个元素拼接成一个字符串


    相关文章

      网友评论

          本文标题:python中列表转成字符串方法

          本文链接:https://www.haomeiwen.com/subject/faqcoctx.html