把內(nèi)容過(guò)程中比較重要的內(nèi)容珍藏起來(lái),下面內(nèi)容段是關(guān)于python各種刪除空格的方法匯總的內(nèi)容。
" xyz ".strip() # returns "xyz"
" xyz ".lstrip() # returns "xyz "
" xyz ".rstrip() # returns " xyz"
" x y z ".replace(' ', '') # returns "xyz"
本文摘自 :https://www.cnblogs.com/