摘要: 1 """7段数码管绘制""" 2 3 import turtle, datetime 4 def drawGap(): # 绘制数码管间隔 5 turtle.penup() 6 turtle.fd(5) 7 8 def drawLine(draw): # 绘制单段数码管 9 drawGap() 1 阅读全文
posted @ 2021-10-24 11:37 苒若 阅读(197) 评论(0) 推荐(0)