python使用Turtle库绘制动态钟表
程序员文章站
2022-06-30 09:34:45
python函数库众多,而且在不断更新,所以学习这些函数库最有效的方法,就是阅读python官方文档。同时借助google和百度。
本文介绍的turtle库对应的
绘制...
python函数库众多,而且在不断更新,所以学习这些函数库最有效的方法,就是阅读python官方文档。同时借助google和百度。
本文介绍的turtle库对应的
绘制动态钟表的基本思路如下(面向对象的编程):
使用5个turtle对象
1个turtle:绘制外表盘
3个turtle:模拟表针行为
1个turtle:输出表盘上文字
根据实时时间使用ontimer()函数更新表盘画面,显示效果如下:
相关函数的使用在程序中进行了详细的注释,代码如下:
from turtle import * from datetime import * def skip(step): penup() forward(step) pendown() def mkhand(name, length): #注册turtle形状,建立表针turtle reset() #清空当前窗口,并重置位置等信息为默认值 skip(-length*0.1) begin_poly() forward(length*1.1) end_poly() handform = get_poly() register_shape(name, handform) def init(): global sechand, minhand, hurhand, printer mode("logo")# 重置turtle指向北 #建立三个表针turtle并初始化 mkhand("sechand", 135) mkhand("minhand", 110) mkhand("hurhand", 90) sechand = turtle() sechand.shape("sechand") minhand = turtle() minhand.shape("minhand") hurhand = turtle() hurhand.shape("hurhand") for hand in sechand, minhand, hurhand: hand.shapesize(1, 1, 3) hand.speed(0) #建立输出文字turtle printer = turtle() printer.hideturtle() printer.penup() def setupclock(radius): #建立表的外框 reset() pensize(7) for i in range(60): skip(radius) if i % 5 == 0: forward(20) skip(-radius-20) else: dot(5) skip(-radius) right(6) def week(t): week = ["星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"] return week[t.weekday()] def date(t): y = t.year m = t.month d = t.day return "%s %d %d" % (y, m, d) def tick(): #绘制表针的动态显示 t = datetime.today() second = t.second + t.microsecond*0.000001 minute = t.minute + second/60.0 hour = t.hour + minute/60.0 sechand.setheading(6*second) #设置朝向,每秒转动6度 minhand.setheading(6*minute) hurhand.setheading(30*hour) tracer(false) #不显示绘制的过程,直接显示绘制结果 printer.forward(65) printer.write(week(t), align="center", font=("courier", 14, "bold")) printer.back(130) printer.write(date(t), align="center", font=("courier", 14, "bold")) printer.back(50) printer.write("i_chaoren", align="center", font=("courier", 14, "bold")) printer.home() tracer(true) ontimer(tick, 1000)#1000ms后继续调用tick def main(): tracer(false) #使多个绘制对象同时显示 init() setupclock(160) tracer(true) tick() mainloop() if __name__ == "__main__": main()
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。