用python循环1秒打印一次时间程序
时间: 2024-02-28 11:57:44 浏览: 69
使用python编程打印当前时间
可以使用Python中的time模块和while循环实现该程序,具体代码如下:
```python
import time
while True:
# 获取当前时间
current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
# 打印当前时间
print(current_time)
# 程序休眠1秒
time.sleep(1)
```
该程序会不断循环打印当前时间,并且每次打印后都会休眠1秒钟。可以通过Ctrl+C来终止该程序。
阅读全文