Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何编写一个可以接受多行输入的简单程序,然后可以像在 lynx 浏览器中一样提交输入,在这里你使用一个空行然后一个句点来提交输入。
我想在电子邮件程序中使用它。
这是一个简单的方法:
#!/usr/bin/python input_list = [] while True: input_str = raw_input(">") if input_str == "." and input_list[-1] == "": break else: input_list.append(input_str) for line in input_list: print line