1. 程式人生 > >python去字串空格

python去字串空格

原文連結:https://blog.csdn.net/zhangfengwusha/article/details/28389853 

字串裡有三個去空格的函式
strip 同時去掉左右兩邊的空格
lstrip 去掉左邊的空格
rstrip 去掉右邊的空格

>>>a=" gho stwwl "
>>>a.lstrip()
'gho stwwl '
>>>a.rstrip()
' gho stwwl'
>>>a.strip()
'gho stwwl'