如何在Python中读取多行原始输入?

如何在Python中读取多行原始输入?

我想要创建一个Python程序,它接受多行用户输入。例如:

This is a multilined input.
It has multiple sentences.
Each sentence is on a newline.

如何接受多行原始输入?


一只名叫tom的猫
浏览 2624回答 3
3回答

哆啦的时光机

继续读取行,直到用户输入空行(或更改)stopword)text = ""stopword = ""while True:     line = raw_input()     if line.strip() == stopword:         break     text += "%s\n" % lineprint text
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python