说明:并不完善,只是记录自己使用到的,没使用到或会用的不会出现在本文。
1、字符串截取
(1)基于索引
s = 'ilovepython'
s[0]='i'
s[-1] = 'n'
(2)取其中一段
s = 'ilovepython'
s[1:5]:s[开始下标,包含: 结束下标,不包含] = 'love'
s[:5]:左下标省略表示 从0开始,等同于 s[0:5]
s[:-1]:左边从0开始,去掉最后一个字符,其作用是去掉字符串尾字符。
2、字符串替换
a = 'hello word' a.replace('word','python')= 'hello python'
3、字符串连接
house_customized_id = '_'.join((community_id , house_area , house_structure , house_floor))
4、字符串拆分
cummunity_id_temp = community_link.split('/')[3].split('_')[1]
5、判断字符串是否包含某子串
if('-' in house_floor):