去除字符串中的空行

去除字符串中的空行

Python 去除字符串中的空行

mystr = 'adfa\n\n\ndsfsf'
print("".join([s for s in mystr.splitlines(True) if s.strip()]))
04-17 01:18