python 去除字符串中指定字符

python中的strip()能夠去除頭尾指定字符python ss = '個人電話是18827038663,也是微信號,\n 請加入,謝謝\n\n\n' print(ss.strip('\n')) 結果:正則表達式 個人電話是18827038663,也是微信號, 請加入,謝謝 能夠看到只能刪除頭尾指定字符。微信 想要去除中間字符,可使用replace()函數函數 ss = '個人電話是1882
相關文章
相關標籤/搜索