摘要: import timeimport turtle as tt# 绘制间隔def drawGap(): tt.penup() tt.fd(5)# 绘制单段数码管def drawLine(draw): drawGap() if (draw): tt.pendown() else: tt.penup() 阅读全文
posted @ 2020-10-19 20:01 123_4 阅读(124) 评论(0) 推荐(0)