python去掉空格和回車的方法:
1、使用strip()、lstrip()、rstrip()等方法刪除字符串中的空格(這些方法只能刪除字符串兩端的空格)
"xyz".strip()#returns"xyz"
"xyz".lstrip()#returns"xyz"
"xyz".rstrip()#returns"xyz"
2、使用replace()方法將空格替換為空
"xyz".replace('','')#returns"xyz"
3、使用replace("\n","")方法將換行符替換為空。
以上內(nèi)容為大家介紹了python如何去空格和回車?希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機構(gòu):千鋒教育。