码迷,mamicode.com
首页 > 其他好文 > 详细

join()函数

时间:2020-01-01 20:16:05      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:open   class   opened   图片   生成   split()   iterable   直接   show   

join()和split()是两个互逆的函数

join语法格式: newstr = str.join(iterable)

各参数的含义如下:

1 newstr:表示合并后生成的新字符串;

2 str:用于指定合并时的分隔符;

3 iterable:做合并操作的源字符串数据,允许以列表、元组等形式提供.

技术图片
# 对list中的元素进行连接
l = [a,b,c]
# 注意这里连接的时候,只能是字符串,不能是数字,
# 什么也不写的时候,即直接连接
print(‘‘.join(l))
# abc

# join可对tuple进行连接
dir = ‘‘,usr,bin,env
print(dir)
print(type(dir))
print(/.join(dir))
# (‘‘, ‘usr‘, ‘bin‘, ‘env‘)
# <class ‘tuple‘>
# /usr/bin/env
View Code

join()函数

标签:open   class   opened   图片   生成   split()   iterable   直接   show   

原文地址:https://www.cnblogs.com/xxswkl/p/12129556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!