最近用到python讀取Excel表時,須要去除空格 回車 換行 浪費了大量時間,用各類循環來一個個的python
刪,最後在網上找到了一個特別簡單的東西,因此記錄下來,以備查看code
s=" as asdas \r\nasda" print ("".join(s.split()))