python用turtle库制作实时钟表(可打包exe)

实时钟表
代码打包exe

代码
python引入两个内置库turtle和datetime即可制作一个实时钟表,代码如下:
# 用turtle画时钟
# 以自定义shape的方式实现
import turtle as t
import datetime as d

def skip(step): # 抬笔,跳到一个地方
t.penup()
t.forward(step)
t.pendown()

def drawClock(radius): # 画表盘
t.speed(0)
t.mode("logo") # 以Logo坐标、角度方式
t.hideturtle()
t.pensize(7)
t.home() # 回到圆点
for j in range(60):
skip(radius)

python用turtle库制作实时钟表(可打包exe)最先出现在Python成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/27650.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>