网上看到的代码
显示只有年月日
参考着改了一下
加上了时分秒
看着舒服多了
import turtle as t
import time
def popspace(): #单管间隔
t.penup()
t.fd(5)
def popline(draw): #画数码管
popspace()
t.pendown() if draw else t.penup()
t.fd(40)
popspace()
t.right(90)
def popstart(d): #画数字数码管
popline(True) if d in [2,3,4,5,6,8,9] else popline(False)
popline(True) if d in [0,1,3,4,5,6,7,8,9] else popline(False)
popline(True) if d in [0,2,3,5,6,8,9] else popline(False)
popline(True) if d in [0,2,6,8] else popline(False)
t.left(90)
popline(True) if d in [0,4,5,6,8,9] else popline(False)
popline(True) if d in [0,2,3,5,6,7,8,9] else popline(False)
popline(True) if d in [0,1,2,3,4,7,8,9] else popline(False)
t.left(180)
t.penup()
t.fd(30)
def popdate(date):
t.pencolor((1,0.36,0.28))
t.speed(9)
for i in date:
if i == '-':
t.write('年',font=("Arial", 30, "normal"))
t.pencolor((0.93,0.51,0.93))
t.fd(60)
elif i == '=':
t.write('月',font=("Arial", 30, "normal"))
t.pencolor((0.5,0.5,0))
t.fd(60)
elif i == '+':
t.write('日',font=("Arial", 30, "normal"))
t.pencolor((0.25,0.88,0.82))
t.fd(40)
#换行输出
t.seth(-90)
t.fd(100)
t.seth(180)
t.fd(700)
t.seth(-90)
t.fd(40)
t.seth(0)
t.fd(40)
elif i == '*':
t.write('时',font=("Arial", 30, "normal"))
t.pencolor((0.18,0.55,0.34))
t.fd(60)
elif i == '/':
t.write('分',font=("Arial", 30, "normal"))
t.pencolor((1,0.89,0.77))
t.fd(60)
elif i == '!':
t.write('秒',font=("Arial", 30, "normal"))
else:
popstart(eval(i))
def main():
t.setup(1000, 800, None,None)
t.penup()
t.fd(-350)
t.pensize(6)
popdate(time.strftime('%Y-%m=%d+%H*%M/%S!',time.localtime()))
t.hideturtle()
main()

本文介绍了一种使用Python编程语言和Turtle图形库实现的实时数字钟项目。通过解析和修改网上找到的代码,作者成功地将时间显示从仅限于年月日扩展到包含时分秒,使数字钟的功能更加完善。代码中详细展示了如何使用Turtle绘制数字,并利用time模块获取当前时间。
2815

被折叠的 条评论
为什么被折叠?



