Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sagorbrur/8a919ed2faa95ebcc1f970b96f871f26 to your computer and use it in GitHub Desktop.
Save sagorbrur/8a919ed2faa95ebcc1f970b96f871f26 to your computer and use it in GitHub Desktop.
import re
text = "I live in Bangladesh.\n\n\nBangladesh is a beautiful country.\n\nI love my country."
res = re.sub(r'\n+', '\n',text)
print(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment