2019实战第二期-字符串读书打卡
2019-03-12 本文已影响0人
tipire
字符串替换与基本转换
“{abc}”.format(abc='hello world')
字符串常用方法
test = 'With a moo-moo here, and a moo-moo there'
#find使用找到对应的索引
test.find('here')
#join使用,使用分隔符将列表进行连接
'||'.join(test.spilt(' '))
#lower与upper使用,使字符串小写与大写
test = "ABC"
test.lower()
test.lower().upper()
#replace字符串替换
test = 'With a moo-moo here, and a moo-moo there'
test.replace('with','replace')
#split对字符串进行分割
test.spilt(' ')
#strip去掉两端空格与tab
test = " df "
test.strip()