網上看到的**
顯示只有年月日
參考著改了一下
加上了時分秒
看著舒服多了
import turtle as t
import time
def popspace(): #單管間隔
t.penup()
t.fd(5)
def popline(draw): #畫數碼管
popspace()
t.pendown() if draw else t.penup()
t.fd(40)
popspace()
t.right(90)
def popstart(d): #畫數字數碼管
popline(true) if d in [2,3,4,5,6,8,9] else popline(false)
popline(true) if d in [0,1,3,4,5,6,7,8,9] else popline(false)
popline(true) if d in [0,2,3,5,6,8,9] else popline(false)
popline(true) if d in [0,2,6,8] else popline(false)
t.left(90)
popline(true) if d in [0,4,5,6,8,9] else popline(false)
popline(true) if d in [0,2,3,5,6,7,8,9] else popline(false)
popline(true) if d in [0,1,2,3,4,7,8,9] else popline(false)
t.left(180)
t.penup()
t.fd(30)
def popdate(date):
t.pencolor((1,0.36,0.28))
t.speed(9)
for i in date:
if i == '-':
t.write('年',font=("arial", 30, "normal"))
t.pencolor((0.93,0.51,0.93))
t.fd(60)
elif i == '=':
t.write('月',font=("arial", 30, "normal"))
t.pencolor((0.5,0.5,0))
t.fd(60)
elif i == '+':
t.write('日',font=("arial", 30, "normal"))
t.pencolor((0.25,0.88,0.82))
t.fd(40)
#換行輸出
t.seth(-90)
t.fd(100)
t.seth(180)
t.fd(700)
t.seth(-90)
t.fd(40)
t.seth(0)
t.fd(40)
elif i == '*':
t.write('時',font=("arial", 30, "normal"))
t.pencolor((0.18,0.55,0.34))
t.fd(60)
elif i == '/':
t.write('分',font=("arial", 30, "normal"))
t.pencolor((1,0.89,0.77))
t.fd(60)
elif i == '!':
t.write('秒',font=("arial", 30, "normal"))
繪製七段數碼管
seven digits draw v1.0 第一,繪製線 第二,繪製七段數碼管組成的數字 第三,繪製優化數碼管間距 第四,繪製多組數字 第五,獲取系統時間 第六,主函式執行程式。如下 import turtle as t import time def drawline draw drawgap ...
七段數碼管繪製
步驟1 繪製單個數字對應的數碼管 步驟2 獲得一串數字,繪製對應的數碼管 步驟2 獲得當前系統時間,繪製對應的數碼管 步驟1 繪製單個數字對應的數碼管 基本問題是繪製一條線,可將其定義為乙個基本函式 def drawline draw turtle.pendown if draw else turt...
七段數碼管繪製
七段數碼管繪製 import turtle as t import time as t def drawgap 繪製數碼管的間隔 t.penup t.fd 5 def drawline draw 繪製單段數碼管,draw為true時,則實畫 drawgap t.pendown if draw els...