python基础知识--字符串

1.
使用函数 str 将其它的非字符串对象转变成字符串对象。
2.
(1). find. 在一个较长的字符串中查找子字符串的位置,返回子字符串首字母所在的位置。没有找到,返回-1.可以制定搜索范围

test='abcdefg'
In[3] : test.find('cde')
Out[3]: 2

test.find('cde',6,10)
Out[4]: -1

(2) join. 用一个符号链接一系列的字符串

seq=['a','b','c']

'/'.join(seq)
Out[8]: 'a/b/c'

(3) lower


test='ABCD'
test.lower()
Out[10]: 'abcd'

(4) replace


test='this is an example' 
test.replace('an','hhh')
Out[12]: 'this is hhh example'

(5) split 将字符串分割成字符串序列


test='1+2+3+4+5'
test.split('+')
Out[14]: ['1', '2', '3', '4', '5']

(6) strip. 去除字符串两侧的空格,但是不去除字符串中间的空格

test='     abc    '
test.strip()
Out[16]: 'abc'

(7) translate.


from string import maketrans
table=maketrans('cs','kz')
test='ccssccss'
test.translate(table)
Out[21]: 'kkzzkkzz'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值