python中的join()函数到底是做啥用的?希望详细解答 我市小白啊
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的join()函数到底是做啥用的?希望详细解答 我市小白啊相关的知识,希望对你有一定的参考价值。
RT
就是把一个list中所有的串按照你定义的分隔符连接起来,比如:list = ['a','b','c']
sep = '|'
join(list,sep)的结果就是a|b|c 参考技术A >>> import string
>>> help(string.join)
Help on function join in module string:
join(words, sep=' ')
join(list [,sep]) -> string
Return a string composed of the words in list, with
intervening occurrences of sep. The default separator is a
single space.
(joinfields and join are synonymous)
>>>
文档写得很明白了的
以上是关于python中的join()函数到底是做啥用的?希望详细解答 我市小白啊的主要内容,如果未能解决你的问题,请参考以下文章
Python 中的“__docformat__”是做啥用的?
Laravel 中的 `HtmlString` 是做啥用的?