摘要: 首先一些Python字符串处理的简易常用的用法。其他的以后用到再补充。 1.去掉重复空格 s = "hello hello hello" s = ' '.join(s.split()) 2.去掉所有回车(或其他字符或字符串) s = "hello\nhello\nhello hello\n" pri 阅读全文
posted @ 2022-06-18 16:41 Python探索牛 阅读(146) 评论(0) 推荐(0) 编辑