Как удалить пустые линии из строки в Python
re.sub(r'^$\n', '', s, flags=re.MULTILINE)
Smoggy Skunk
re.sub(r'^$\n', '', s, flags=re.MULTILINE)