程式執行效果圖:
有兩種方法,執行效果一樣
方法一:利用configure()或config()方法實現文字變化
# 方法一:利用configure()或config()方法實現文字變化
import tkinter
import time
def gettime():
# 獲取當前時間並轉為字串
timestr = time.strftime("%h:%m:%s")
# 重新設定標籤文字
lb.configure(text=timestr)
# 每隔一秒呼叫函式gettime自身獲取時間
root.after(1000, gettime)
root = tkinter.tk()
root.title('電子時鐘')
# 設定字型大小顏色
lb = tkinter.label(root, text='', fg='blue', font=("黑體", 80))
lb.pack()
gettime()
root.mainloop()
方法二:利用textvariable變數屬性實現文字變化
#方法二:利用textvariable變數屬性實現文字變化
import tkinter
import time
def gettime():
# 獲取當前時間
var.set(time.strftime("%h:%m:%s"))
# 每隔一秒呼叫函式自身獲取時間
root.after(1000, gettime)
root = tkinter.tk()
root.title('電子時鐘')
var=tkinter.stringvar()
# 設定字型大小顏色
lb=tkinter.label(root, textvariable=var, fg='blue', font=("黑體", 80))
lb.pack()
gettime()
root.mainloop()
python 獲取當前時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。你可以試下下面的方式來取得當前時間的時間戳 import time prin...
python 獲取當前時間
取得時間相關的資訊的話,要用到python time模組,python time模組裡面有很多非常好用的功能,你可以去官方 文件了解下,要取的當前時間的話,要取得當前時間的時間戳,時間戳好像是1970年到現在時間相隔的時間。以下面的方式來取得當前時間的時間戳 import time print ti...
Python 獲取當前時間
import time nowtime time.localtime 獲取當前時間 print time.strftime y m d h m s nowtime 對當前時間進行格式化並輸出 y年 四位數 000 9999 2020 y年 兩位數 00 99 2020 20 m月 01 12 d日 ...