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.
我想要做的是,例如:
打印类似“欢迎使用我的程序”然后创建一个计时器 x 秒,经过 x 秒后,它会执行下一件事,例如打印其他内容,例如“开始输入 Hello”
时间库非常有用:
>>> import time >>> print "hello" hello >>> time.sleep(5) # 5 second pause >>> print "done" done
这将在 time.sleep() 期间暂停程序的所有执行 5 秒。如果您想在暂停期间做其他事情,这将成为一个更复杂的问题,您可能应该研究线程