excel与python吧 关注:2贴子:9
  • 1回复贴,共1

input一直没输入怎么办?python代码安排!

只看楼主收藏回复

上代码
# 安装库
# pip install func_timeout
from func_timeout import FunctionTimedOut, func_timeout
try:
order = func_timeout(5, lambda: input('立即开始请回复1:'))
print(order)
# 这里下面可以安排输入后需要执行的代码
print('我输入了')
except FunctionTimedOut:
order = '按照计划执行'
# 这里下面可以安排超时没有输入后需要执行的代码
print(order)
#Python#
#Input#


IP属地:四川来自iPhone客户端1楼2024-06-03 20:49回复
    快冲一下试试


    IP属地:四川来自iPhone客户端2楼2024-06-27 10:02
    回复