当input输入内容的时候,许多情况下输入回车键另起一行输入,但是这时候Pycharm就执行程序,然后结束,导致无法继续输入内容。
原因:Python默认遇到回车的时候,输入结束。所以我们需要更改这个提示符,在遇到其他字符的时候,输入才结束。
比如有一个任务:
请输入文件名:悯农.txt
请输入内容【单独输入‘:q‘保存退出】:
锄禾日当午,汗滴禾下土。
谁知盘中餐,粒粒皆辛苦。
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- coding: utf-8 -*-
file_name = input ( "请输入文件名:" )
file_name = file_name + ".txt"
something_file = open (file_name, "w" )
stopword = ":q"
file_content = ""
print ( "请输入内容【单独输入‘:q‘保存退出】:" )
for line in iter ( input ,stopword):
file_content = file_content + line + "\n"
print (file_content, file = something_file)
something_file.close()
|
或者:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# -*- coding: utf-8 -*-
def file_write(file_name):
f = open (file_name, 'w' )
print ( '请输入内容【单独输入\':q\'保存退出】:' )
while True :
file_content = input ()
if file_content ! = ':q' :
f.write( '%s\n' % file_content)
else :
break
f.close()
file_name = input ( '请输入文件名:' )
file_write(file_name)
|
以上这篇python将回车作为输入内容的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/chaowanghn/article/details/53964473