真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python如何開發(fā)一個(gè)動(dòng)態(tài)時(shí)鐘小程序

這篇文章給大家分享的是有關(guān)Python如何開發(fā)一個(gè)動(dòng)態(tài)時(shí)鐘小程序的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。

句容網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,句容網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為句容1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的句容做網(wǎng)站的公司定做!

前言

本文的文字及圖片來(lái)源于網(wǎng)絡(luò),僅供學(xué)習(xí)、交流使用

import turtle
from datetime import *
# 抬起畫筆,向前運(yùn)動(dòng)一段距離放下
def skip(step):
    turtle.penup()
    turtle.forward(step)
    turtle.pendown()
def mkHand(name, length):
    # 注冊(cè)Turtle形狀,建立表針Turtle
    turtle.reset()
    # 先反向運(yùn)動(dòng)一段距離,終點(diǎn)作為繪制指針的起點(diǎn)
    skip(-length * 0.1)
    # 開始記錄多邊形的頂點(diǎn)。當(dāng)前的烏龜位置是多邊形的第一個(gè)頂點(diǎn)。
    turtle.begin_poly()
    turtle.forward(length * 1.1)
    # 停止記錄多邊形的頂點(diǎn)。當(dāng)前的烏龜位置是多邊形的最后一個(gè)頂點(diǎn)。將與第一個(gè)頂點(diǎn)相連。
    turtle.end_poly()
    # 返回最后記錄的多邊形。
    handForm = turtle.get_poly()
    turtle.register_shape(name, handForm)


def init():
    global secHand, minHand, houHand, printer
    # 重置Turtle指向北
    turtle.mode("logo")
    # 建立三個(gè)表針Turtle并初始化
    mkHand("secHand", 135)
    mkHand("minHand", 125)
    mkHand("houHand", 90)
    secHand = turtle.Turtle()
    secHand.shape("secHand")
    minHand = turtle.Turtle()
    minHand.shape("minHand")
    houHand = turtle.Turtle()
    houHand.shape("houHand")

    for hand in secHand, minHand, houHand:
        hand.shapesize(1, 1, 3)
        hand.speed(0)

    # 建立輸出文字Turtle
    printer = turtle.Turtle()
    # 隱藏畫筆的turtle形狀
    printer.hideturtle()
    printer.penup()


# 繪制表盤
def setupClock(radius):
    # 建立表的外框
    turtle.reset()
    turtle.pensize(7)
    for i in range(60):
        # 向前移動(dòng)半徑值
        skip(radius)
        if i % 5 == 0:
            # 畫長(zhǎng)刻度線
            turtle.forward(20)
            # 回到中心點(diǎn)
            skip(-radius - 20)

            # 移動(dòng)到刻度線終點(diǎn)
            skip(radius + 20)
            # 下面是寫表盤刻度值,為了不與劃線重疊,所以對(duì)于特殊位置做了處理
            if i == 0:
                turtle.write(int(12), align="center", font=("Courier", 14, "bold"))
            elif i == 30:
                skip(25)
                turtle.write(int(i / 5), align="center", font=("Courier", 14, "bold"))
                skip(-25)
            elif (i == 25 or i == 35):
                skip(20)
                turtle.write(int(i / 5), align="center", font=("Courier", 14, "bold"))
                skip(-20)
            else:
                turtle.write(int(i / 5), align="center", font=("Courier", 14, "bold"))

            # 回到中心點(diǎn)
            skip(-radius - 20)
        else:
            # 畫圓點(diǎn)
            turtle.dot(5)
            skip(-radius)
        # 順時(shí)針移動(dòng)6°
        turtle.right(6)


def week(t):
    week = ["星期一", "星期二", "星期三",
            "星期四", "星期五", "星期六", "星期日"]
    return week[t.weekday()]


def date(t):
    y = t.year
    m = t.month
    d = t.day
    return "%s %d%d" % (y, m, d)


def tick():
    # 繪制表針的動(dòng)態(tài)顯示
    t = datetime.today()
    second = t.second + t.microsecond * 0.000001
    minute = t.minute + second / 60.0
    hour = t.hour + minute / 60.0
    secHand.setheading(6 * second)
    minHand.setheading(6 * minute)
    houHand.setheading(30 * hour)

    turtle.tracer(False)
    printer.forward(65)
    printer.write(week(t), align="center",
                  font=("Courier", 14, "bold"))
    printer.back(130)
    printer.write(date(t), align="center",
                  font=("Courier", 14, "bold"))
    printer.home()
    turtle.tracer(True)

    # 100ms后繼續(xù)調(diào)用tick
    turtle.ontimer(tick, 100)


def main():
    # 打開/關(guān)閉龜動(dòng)畫,并為更新圖紙?jiān)O(shè)置延遲。
    turtle.tracer(False)
    init()
    setupClock(160)
    turtle.tracer(True)
    tick()
    turtle.mainloop()


if __name__ == "__main__":
    main()

感謝各位的閱讀!關(guān)于“Python如何開發(fā)一個(gè)動(dòng)態(tài)時(shí)鐘小程序”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


網(wǎng)站名稱:Python如何開發(fā)一個(gè)動(dòng)態(tài)時(shí)鐘小程序
地址分享:http://weahome.cn/article/jesjip.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部