假定在Python定义了字符串str:
>>>str=" gho stwwl "
一、同时去掉左右两边的空格
>>>str.strip()
'gho stwwl'
二、去掉左边的空格
>>>str.lstrip()
'gho stwwl '
三、去掉右边的空格
>>>str.rstrip()
' gho stwwl'
工作在第一线,你想要的答案,我都曾遇见
假定在Python定义了字符串str:
>>>str=" gho stwwl "
一、同时去掉左右两边的空格
>>>str.strip()
'gho stwwl'
二、去掉左边的空格
>>>str.lstrip()
'gho stwwl '
三、去掉右边的空格
>>>str.rstrip()
' gho stwwl'
热门文章
2017-10-29
2017-10-19
2017-09-24
2017-09-12
2017-09-10
2017-09-10
最近文章
2022-05-02
2018-10-26
2018-10-25
2018-07-02
2018-05-14
2018-05-13
联系方式