用python写一个时钟
时间: 2024-05-03 16:18:56 浏览: 105
miaobiao.rar_python 秒表_用Python编写一个秒表和时钟
5星 · 资源好评率100%
以下是用 Python 写的一个简单时钟程序:
```python
import datetime
import time
while True:
now = datetime.datetime.now()
print(now.strftime("%Y-%m-%d %H:%M:%S"), end="", flush=True)
print("\r", end="", flush=True)
time.sleep(1)
```
这个程序会不断地输出当前时间,每秒钟更新一次。使用 `datetime` 模块获取当前时间,使用 `time` 模块暂停1秒钟后再次更新时间。
程序会不断循环输出时间,直到手动中断程序。
阅读全文