strip()、rstrip()、lstrip()

点击查看代码
str1 = '    hello , welcome to the world    '

# 去除字符串左右两边空白
str1.strip()
'hello , welcome to the world'

# 去除字符串右边空白
str1.rstrip()
'    hello , welcome to the world'

# 去除字符串左边空白
str1.lstrip()
'hello , welcome to the world    '
posted @ 2022-07-02 17:57  灵、主  阅读(7)  评论(0编辑  收藏  举报