Skip to content

Instantly share code, notes, and snippets.

@Foair
Created April 5, 2020 11:16
Show Gist options
  • Save Foair/8a44da4de39df03951bd59f6dd93cb3e to your computer and use it in GitHub Desktop.
Save Foair/8a44da4de39df03951bd59f6dd93cb3e to your computer and use it in GitHub Desktop.
在文本中书写长字符串
s = """
s | asd +
adf sdaf+
dfasdfasdf_
"""
s = """
select *_
from app+
le+
"""
new_s = s.replace('+\n', '').replace('_\n', ' ').lstrip()
print(new_s, len(new_s))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment