Python 去除字符串中的空行

Python 去除字符串中的空行

mystr = 'adfa\n\n\ndsfsf'
print("".join([s for s in mystr.splitlines(True) if s.strip()]))

 

转载于:https://www.cnblogs.com/ibingshan/p/11017670.html