Answers for "remove blank lines from string python"

2

remove extra spaces and empty lines from string python

"n".join([s for s in code.split("n") if s])
Posted by: Guest on March-13-2021
0

how to remove blank lines from string in python

re.sub(r'^$n', '', s, flags=re.MULTILINE)
Posted by: Guest on June-15-2021

Code answers related to "remove blank lines from string python"

Python Answers by Framework

Browse Popular Code Answers by Language