• 技术文章 >常见问题 >Python常见问题

    Python怎么将列表转字符串

    月亮邮递员月亮邮递员2020-04-03 17:38:15原创16490

    Python怎么将列表转字符串

    例子:

    将列表 temp_list = ['h', 'e', 'l', 'l', 'o'] 转换成字符串'hello',代码如下:

    temp_list = ['h', 'e', 'l', 'l', 'o']
    result = ''.join(temp_list)
    print(result)    
    
    hello

    推荐学习《Python教程》。

    字符串对象的方法join其描述如下:

    大概意思是:s.join(iterable)是将括号内的迭代对象(如列表)使用s字符串作为链接将迭代对象中的元素拼接成一个字符串,返回该字符串。

    def join(self, iterable): # real signature unknown; restored from __doc__
            """
            S.join(iterable) -> str
            
            Return a string which is the concatenation of the strings in the
            iterable.  The separator between elements is S.
            """
            return ""
    专题推荐:python 列表 字符串
    上一篇:Python中区分字符与字符串吗 下一篇:Python有表格显示界面吗

    相关文章推荐

    • python3怎么打印列表• python怎么往列表里插入元素• python列表如何去除元素• Python元组怎么转换成列表

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网