python學習--互動式圖形編程執行個體三

來源:互聯網
上載者:User

標籤:學習   ram   鍵盤   today   動態   orm   pack   env   date   

 

#!/usr/bin/env python3# -*- coding: utf-8 -*-
#時鐘
from turtle import *from datetime import * def Skip(step): penup() forward(step) pendown() def mkHand(name, length): #註冊Turtle形狀,建立錶針Turtle reset() Skip(-length*0.1) begin_poly() #開始記錄畫筆座標 forward(length*1.1) #畫筆向前移動length*1.1 end_poly() #結束記錄畫筆座標 handForm = get_poly() #記錄畫筆起始和結束座標位置(一個元組資料) register_shape(name, handForm) #註冊這個形狀 def Init(): global secHand, minHand, hurHand, printer mode("logo")# 重設Turtle指向北 #建立三個錶針Turtle並初始化 mkHand("secHand", 125) mkHand("minHand", 130) mkHand("hurHand", 90) secHand = Turtle() secHand.shape("secHand") minHand = Turtle() minHand.shape("minHand") hurHand = Turtle() hurHand.shape("hurHand") for hand in secHand, minHand, hurHand: hand.shapesize(1, 1, 3) hand.speed(0) #建立輸出文字Turtle printer = Turtle() printer.hideturtle() #隱藏畫筆 printer.penup() def SetupClock(radius): #建立表的外框 reset() pensize(7) #畫筆大小 for i in range(60): Skip(radius) #畫筆抬起,向前移動“radius”具體 if i % 5 == 0: forward(20) #如果能被5整除,就向前移動20 Skip(-radius-20) #畫筆再回退到原位置 else: dot(5) #畫一個5個像素的點 Skip(-radius) #畫筆再回退到原位置 right(6) #每次迴圈向右移動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(): #繪製錶針的動態顯示 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) #秒針設定的角度 一圈360度,一圈60秒 360/60 = 6 minHand.setheading(6*minute) #分針設定的角度 一圈360度,一圈60分鐘 360/60 = 6 hurHand.setheading(30*hour) #時針設定的角度 一圈360度,一圈12小時 360/12 = 30 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() tracer(True) #開啟動畫 ontimer(Tick, 100)#100ms後繼續調用tick def main(): tracer(False) Init() #把錶針畫出來 SetupClock(160) #把錶盤畫出來 tracer(True) Tick() #讓錶針動起來,文字寫上去 mainloop() if __name__ == "__main__": main()

 

#!/usr/bin/env python3# -*- coding: utf-8 -*-
#鍵盤值查詢
from tkinter import * root=Tk() #建立一個架構,在這個架構中響應事件 frame=Frame(root,width=256,height=256) def callBack(event): print(event.keysym) frame.bind("<KeyPress>",callBack) frame.pack() #當前架構被選中,意思是鍵盤觸發,只對這個架構有效 frame.focus_set() mainloop()

 

python學習--互動式圖形編程執行個體三

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.