怎么实现在按回车键继续执行程序
大家好,在程序的末尾加上pause或者input('Press <Enter Key . . .>'),实际在cmd出现的是按任意键继续,但实际上是按任意键就会退出input("123")
input('Press <Enter Key . . .>')
现在想实现的效果是:程序运行后输入123,然后按回车键再输入123,然后按回车键再输入123,不断这样重复
这不标准的 while 1 循环么?
#!/usr/bin/env python
#coding=utf-8
while True:
key = input()
input('Press <Enter Key...>')
把你需要执行的所有语句和 'Press <Enter Key...>' 放进一个死循环就可以了。 {:10_256:}{:10_256:}{:10_256:} 人造人 发表于 2021-12-27 10:20
这不标准的 while 1 循环么?
感谢感谢
页:
[1]