Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buffer=[]
- run=True
- print("add multiple sentences, press enter twice when done")
- while run:
- line=input()
- if line=="":
- run=False
- buffer.append(line)
- text="\n".join(buffer)
- print(text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement