帮我写一个定时器代码
时间: 2023-03-01 17:58:50 浏览: 118
好的,下面是一个在 Python 中实现的定时器代码:
```
import time
def timer(seconds):
print("Timer started.")
time.sleep(seconds)
print("Time's up!")
seconds = int(input("Enter the number of seconds for the timer: "))
timer(seconds)
```
这个定时器的工作原理是:首先接收用户输入的时间(以秒为单位),然后通过 `time.sleep` 函数来等待指定的时间。在等待期间,程序会阻塞,不会执行任何其他操作。等到等待时间结束后,程序会输出 "Time's up!" 的提示信息。
阅读全文