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

python中字符串操作

时间:2017-12-22 18:39:09      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:方法   操作   post   body   pos   字符串   nbsp   xxx   字符   

#创建字符串

Str1 = ‘Hello World‘

Str2 = "Let‘s go"

 

#重复输入字符串

print(‘hello‘ * 2)

 

#字符串的切片

print(‘helloworld‘[2:])

 

#格式化字符串

print(‘%s is a good teacher‘%‘wade‘)

 

#字符串的拼接

方法一:

a = ‘111‘

b = ‘222‘

c = ‘333‘

d = a + b + c

print(c)            #111222333

 

方法二:

a = ‘111‘

b = ‘222‘

c = ‘333‘

c = ‘xxx‘.join([a,b,c])            #111xxx222xxx333     此方法较第一种方法效率高

 

python中字符串操作

标签:方法   操作   post   body   pos   字符串   nbsp   xxx   字符   

原文地址:http://www.cnblogs.com/xjklmycw/p/8087080.html

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