#e7.2SevenSegDisplay.py
import turtle, datetime
def drawGap(): #绘制数码管间隔
turtle.penup()
turtle.fd(5)
def drawLine(draw): #绘制单段数码管
drawGap()
turtle.pendown() if draw else turtle.penup()
turtle.fd(40)
drawGap()
turtle.right(90)
def drawDigit(d): #根据数字绘制七段数码管
drawLine(True) if d in [2,3,4,5,6,8,9] else drawLine(False)
drawLine(True) if d in [0,1,3,4,5,6,7,8,9] else drawLine(False)
drawLine(True) if d in [0,2,3,5,6,8,9] else drawLine(False)
drawLine(True) if d in [0,2,6,8] else drawLine(False)
turtle.left(90)
drawLine(True) if d in [0,4,5,6,8,9] else drawLine(False)
drawLine(True) if d in [0,2,3,5,6,7,8,9] else drawLine(False)
drawLine(True) if d in [0,1,2,3,4,7,8,9] else drawLine(False)
turtle.left(180)
turtle.penup()
turtle.fd(20)
def drawDate(date):
turtle.pencolor("red")
for i in date:
if i == '-':
turtle.write('年',font=("Arial", 18, "normal"))
turtle.pencolor("green")
turtle.fd(40)
elif i == '=':
turtle.write('月',font=("Arial", 18, "normal"))
turtle.pencolor("blue")
turtle.fd(40)
elif i == '+':
turtle.write('日',font=("Arial", 18, "normal"))
else:
drawDigit(eval(i))
def main():
turtle.setup(800, 350, 200, 200)
turtle.penup()
turtle.fd(-350)
turtle.pensize(5)
drawDate(datetime.datetime.now().strftime('%Y-%m=%d+'))
turtle.hideturtle()
main()

示例调试:
import jieba
#jieba.lcut(s)是最常用的中文分词函数,用于精准模式,
#即将字符串分割成等量的中文词组,返回结果是列表类型。
k=jieba.lcut("全国计算机等级考试")
print(k)
#结果是列表类型,冗余性最大。
ls = jieba.lcut("全国计算机等级考试Python科目", cut_all=True)
print(ls)
#返回搜索引擎模式,该模式首先执行精确模式,然后再对其中长词进一步切分获得最终结果
ls = jieba.lcut_for_search("全国计算机等级考试Python科目")
print(ls)
#jieba.add_word()函数,顾名思义,用来向jieba词库增加新的单词。
jieba.add_word("Python科目")
ls = jieba.lcut("全国计算机等级考试Python科目")
print(ls)
输出结果:
Python标准库及第三方库/pyprg10/jiebaf示例1.py
Building prefix dict from the default dictionary ...
Loading model from cache C:\Users\ADMINI~1\AppData\Local\Temp\jieba.cache
Loading model cost 0.584 seconds.
Prefix dict has been built successfully.
['全国', '计算机', '等级', '考试']
['全国', '国计', '计算', '计算机', '算机', '等级', '考试', 'Python', '科目']
['全国', '计算', '算机', '计算机', '等级', '考试', 'Python', '科目']
['全国', '计算机', '等级', '考试', 'Python科目']
>>>

