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

python字符串详解

时间:2017-08-23 17:37:00      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:lis   print   height   highlight   str1   test   翻转   pytho   字符   

一、截取子串

test="hello"

print(test[0:4])

二、复制字符串

#strcpy(sStr1,sStr2)
sStr1 = ‘strcpy‘
sStr2 = sStr1
sStr1 = ‘strcpy2‘
print sStr2

三、追加字符串

sStr1 = 12345
sStr2 = abcdef
n = 3
sStr1 += sStr2[0:n]
print (sStr1)

四、翻转字符串

sStr1 = abcdefg
sStr1 = sStr1[::-1]
print (sStr1)

 

五、查找字符串

sStr1 = abcdefg
sStr2 = cde
print (sStr1.find(sStr2))



六、分割数据

s = abcdefghijk
print(s.split(d))

result :  [abc, efghijk]

 

七、连接数据(一般是列表或元祖)


mylist = [‘Brazil‘, ‘Russia‘, ‘India‘, ‘China‘]
print (‘_‘.join(mylist))

result: Brazil_Russia_India_China

 

  

 

python字符串详解

标签:lis   print   height   highlight   str1   test   翻转   pytho   字符   

原文地址:http://www.cnblogs.com/dengshanjun/p/7419058.html

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