31个必备的Python字符串方法,建议收藏!

1、Slicing

s = '   hello   '
s = s[:]

print(s)
#    hello


s = '   hello   '
s = s[3:8]

print(s)
# hello

 

2、strip()

s = '   hello   '.strip()

print(s)
# hello


s = '###hello###'.strip()

print(s)
# ###hello###

3、lstrip()

s = '   hello   '.lstrip()

print(s)
# hello

 

4、rstrip()

s = '   hello   '.rstrip()

print(s)
#    hello

https://mp.weixin.qq.com/s/3ebqb72hz4wvBaIP0vk-0A

 

上一篇:阿里云峰会 | 速看!数据库专题亮点为你一网打尽


下一篇:阿里云荣膺MongoDB年度最佳ISV伙伴奖,首个共建特性上线MongoDB最新版 ​