gpt4 book ai didi

python - 更新Python程序中的时钟而不创建新行

转载 作者:太空宇宙 更新时间:2023-11-03 17:09:44 25 4
gpt4 key购买 nike

我正在为 Raspberry Pi 创建一个程序,其中在命令行中,程序显示日期和时间,如下所示,我想添加重复或更新,以便日期和时间在程序开始后是最新的。这段代码来自在线教程,我想弄乱它并陷入死胡同。我目前正在学习Python。

#!/usr/bin/python

import time
now = time.strftime("%c")
print "current date and time " + time.strftime("%c")

最佳答案

以下代码将每秒在同一位置打印时间:

import time

while True:
time.sleep(1.0)
print("\r" + str(time.time()), end="")

关于python - 更新Python程序中的时钟而不创建新行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34218636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com