时间:2021-05-22
join用来连接字符串,split恰好相反,拆分字符串的。
不用多解释,看完代码,其意自现了。
复制代码 代码如下:
>>>li = ['my','name','is','bob']
>>>' '.join(li)
'my name is bob'
>>>s = '_'.join(li)
>>>s
'my_name_is_bob'
>>>s.split('_')
['my', 'name', 'is', 'bob']
其join和split的英文版解释如下:
join(...)
S.join(sequence) -> string
Return a string which is the concatenation of the strings in the
sequence. The separator between elements is S.
split(...)
S.split([sep [,maxsplit]]) -> list of strings
Return a list of the words in the string S, using sep as the
delimiter string. If maxsplit is given, at most maxsplit
splits are done. If sep is not specified or is None, any
whitespace string is a separator and empty strings are removed
from the result.
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了python中split方法用法。分享给大家供大家参考。具体分析如下:split是非常重要的字符串方法,它是join的逆方法,用来将字符串分割成序
本文实例讲述了Python中threading模块join函数用法。分享给大家供大家参考。具体分析如下:join的作用是众所周知的,阻塞进程直到线程执行完毕。通
pythonjoin和split方法简单的说是:join用来连接字符串,split恰好相反,拆分字符串的。.join() join将容器对象拆分并以指定的字符
PHPstr_split()函数实例把字符串"Hello"分割到数组中:定义和用法str_split()函数把字符串分割到数组中。语法str_split(_st
本文实例讲述了JS数组方法join()用法。分享给大家供大家参考,具体如下:join()方法定义和用法:join()方法用于把数组中的所有元素放入一个字符串。元