python去掉行尾的换行符方法

明天你好 2019-04-26

如下所示:

mystring.strip().replace(' ', '').replace('\n', '').replace('\t', '').replace('\r', '').strip()

相关推荐