#七段数码管的绘制.py
from turtle import * #调用turtle、random、time库
from random import *
import time
def drawGap():
penup() #提笔
fd(5)
def drawLine(draw):
drawGap()
if draw: #除了七段数码管提笔,其余停笔
pendown()
else:
penup()
fd(40) #向前40
drawGap()
right(90) #向右旋转90
def drawDight(digit):
pencolor(random(),random(),random())#颜色随机
drawLine(True) if digit in [2, 3, 4, 5, 6, 8, 9] else drawLine(False)#第一段那些数字会经过
pencolor(random(), random(), random())
drawLine(True) if digit in [0, 1, 3, 4, 5, 6, 7, 8, 9] else drawLine(False)
pencolor(random(), random(), random())
drawLine(True) if digit in [0, 2, 3, 5, 6, 8, 9] else drawLine(False)
pencolor(random(), random(), random())
drawLine(True) if digit in [0, 2, 6, 8] else drawLine(False)
pencolor(random(), rando
Python之七段彩色电子管的绘制
最新推荐文章于 2023-12-20 11:41:20 发布
这段代码使用Python的turtle库来实现七段数码管的绘制,并通过随机颜色赋予其彩色效果。数码管的每个部分根据传入的数字决定是否绘制,同时还能展示日期,将时间格式化为'年-月=日+'的形式并进行绘制。
摘要由CSDN通过智能技术生成