Python 去除字符串中的空行2024-02-15 09:57:58Python 去除字符串中的空行 mystr = 'adfa\n\n\ndsfsf' print("".join([s for s in mystr.splitlines(True) if s.strip()])) 上一篇:python 统计字符串中指定字符出现次数的方法下一篇:Pytorch中randn和rand函数的用法