就是把一个list中所有的串按照你定义的分隔符连接起来,比如:
>>> import string >>> >>> >>> list = [‘ab‘,‘c‘,‘d‘,‘ef‘,‘gh‘] >>> list [‘ab‘, ‘c‘, ‘d‘, ‘ef‘, ‘gh‘] >>> ‘_‘.join(list) ‘ab_c_d_ef_gh‘ >>>
时间: 2024-10-29 16:43:23
就是把一个list中所有的串按照你定义的分隔符连接起来,比如:
>>> import string >>> >>> >>> list = [‘ab‘,‘c‘,‘d‘,‘ef‘,‘gh‘] >>> list [‘ab‘, ‘c‘, ‘d‘, ‘ef‘, ‘gh‘] >>> ‘_‘.join(list) ‘ab_c_d_ef_gh‘ >>>