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