這篇文章給大家分享的是有關(guān)Python實(shí)現(xiàn)簡單語音整點(diǎn)報(bào)時(shí)的方法的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比通化網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式通化網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋通化地區(qū)。費(fèi)用合理售后完善,10余年實(shí)體公司更值得信賴。主要的技術(shù)特殊點(diǎn)在于PyS60的定時(shí)器最多只能定2147秒。在手機(jī)上直接寫的。
import e32 import audio import time import appuifw import sys import os.path import marshal def say(oclock): """say the time in English""" c = oclock if c > 12: c -= 12 cs = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve'][c] audio.say("it's " + cs + " o'clock.") def say_current(): global Sayflags t = time.localtime() # say according to configuration if Sayflags[int(t[3])] == 1: say(t[3]) def on_oclock(): """when an o'clock arrived""" say_current() start_timer() def start_timer(): """start a timer that will be reached at next o'clock""" global Timer lt = time.localtime() d = 60 * (59 - lt[4]) + 61 - lt[5] if d>2147: Timer.after(2147, lambda : Timer.after(d-2147, on_oclock)) else: Timer.after(d, on_oclock) def clock_names(): return [u'0:00', u'1:00', u'2:00', u'3:00', u'4:00', u'5:00', u'6:00', u'7:00', u'8:00', u'9:00', u'10:00', u'11:00', u'12:00', u'13:00', u'14:00', u'15:00', u'16:00', u'17:00', u'18:00', u'19:00', u'20:00', u'21:00', u'22:00', u'23:00'] def list_handler(): """set flag and refresh the listbox""" global Lb global Sayflags c = Lb.current() Sayflags[c] = 1 - Sayflags[c] Lb.set_list(list_content(), c) def list_content(): global Sayflags icons = [appuifw.Icon(u"z:\\resource\\apps\\avkon2.mif", 16506, 16507), appuifw.Icon(u"z:\\resource\\apps\\avkon2.mif", 16504, 16505)] # unchecked, unchecked return map(lambda s, f: tuple([s, icons[f]]), clock_names(), Sayflags) def exit_handler(): global Lock global Timer global Standalone Timer.cancel() save_cfg() if not Standalone: Lock.signal() else: appuifw.app.set_exit() def save_cfg(): global Sayflags try: f = open(Configfile, 'wb') marshal.dump(Sayflags, f) f.close() except: pass def load_cfg(): global Sayflags try: f = open(Configfile, 'rb') Sayflags = marshal.load(f) f.close() except: pass # Testing code def test(): say_current() #on_oclock() #for n in range(1,13): # say(n) #test() def main(): global Standalone appuifw.app.title = u'Audio Clock' appuifw.app.exit_key_handler = exit_handler appuifw.app.body = Lb if time.localtime()[4] == 0: say_current() start_timer() if not Standalone: Lock.wait() Standalone = True Timer = e32.Ao_timer() Lock = e32.Ao_lock() Configfile = os.path.abspath(os.path.dirname(sys.argv[0])) + '\\audioclock.cfg' Sayflags = [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1] #24 clocks' flags load_cfg() Lb = appuifw.Listbox(list_content(), list_handler) main()
感謝各位的閱讀!關(guān)于“Python實(shí)現(xiàn)簡單語音整點(diǎn)報(bào)時(shí)的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
分享名稱:Python實(shí)現(xiàn)簡單語音整點(diǎn)報(bào)時(shí)的方法-創(chuàng)新互聯(lián)
瀏覽路徑:http://jinyejixie.com/article8/coisop.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、App設(shè)計(jì)、網(wǎng)站設(shè)計(jì)公司、外貿(mào)網(wǎng)站建設(shè)、軟件開發(fā)、微信小程序
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容