码迷,mamicode.com
首页 > 编程语言 > 详细

python split 与join

时间:2015-01-12 17:29:07      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

1.string.join (saq):以string 为分隔符,将seq中所有的元素(字符串表示"")合并成一个新的字符串

2.string.split(str="",num=string.count(str)):以str做分隔符切string,num表示分隔几个字符串

 

s=‘a b c‘
print s.split(‘ ‘)
st=‘hello world‘
print st.split(‘o‘)
print st.split(‘o‘,1)

--------output---------
[‘a‘, ‘b‘, ‘c‘]
[‘hell‘, ‘ w‘, ‘rld‘]
[‘hell‘, ‘ world‘]

 

python split 与join

标签:

原文地址:http://www.cnblogs.com/chenya/p/4218742.html

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