python编程,使用Tkinter中的文本框显示系统时间
Tkinter是事件驱动的,但如果不需要事件驱动该怎么办呢?比如,设置一个Text,自动显示当前系统时间。这个过程中,是不需要用户进行操作的,程序运行时,Text就可以自...
Tkinter是事件驱动的,但如果不需要事件驱动该怎么办呢?比如,设置一个Text,自动显示当前系统时间。这个过程中,是不需要用户进行操作的,程序运行时,Text就可以自动显示当前系统时间。
我只简单看了下Tkinter,没有想明白这个问题,请尽量讲详细些,并附一段显示当前系统时间的程序。(也可以是类似的,比如Text显示的文本来自于一个函数的返回结果,这个函数能自动不间断地输出结果)
谢谢! 展开
我只简单看了下Tkinter,没有想明白这个问题,请尽量讲详细些,并附一段显示当前系统时间的程序。(也可以是类似的,比如Text显示的文本来自于一个函数的返回结果,这个函数能自动不间断地输出结果)
谢谢! 展开
2个回答
2015-07-08 · 知道合伙人互联网行家
关注
展开全部
Python编程中,用Tkinter中的文本框获取系统当前的时间并且显示,代码如下:
import sys
from tkinter import *
import time
def tick():
global time1
# 从运行程序的计算机上面获取当前的系统时间
time2 = time.strftime('%H:%M:%S')
# 如果时间发生变化,代码自动更新显示的系统时间
if time2 != time1:
time1 = time2
clock.config(text=time2)
# calls itself every 200 milliseconds
# to update the time display as needed
# could use >200 ms, but display gets jerky
clock.after(200, tick)
root = Tk()
time1 = ''
status = Label(root, text="v1.0", bd=1, relief=SUNKEN, anchor=W)
status.grid(row=0, column=0)
clock = Label(root, font=('times', 20, 'bold'), bg='green')
clock.grid(row=0, column=1)
tick()
root.mainloop()
展开全部
import sys
from tkinter import *
import time
def tick():
global time1
# get the current local time from the PC
time2 = time.strftime('%H:%M:%S')
# if time string has changed, update it
if time2 != time1:
time1 = time2
clock.config(text=time2)
# calls itself every 200 milliseconds
# to update the time display as needed
# could use >200 ms, but display gets jerky
clock.after(200, tick)
root = Tk()
time1 = ''
status = Label(root, text="v1.0", bd=1, relief=SUNKEN, anchor=W)
status.grid(row=0, column=0)
clock = Label(root, font=('times', 20, 'bold'), bg='green')
clock.grid(row=0, column=1)
tick()
root.mainloop()
代码是我网上抄来的,具体实现一种方法可以用并行运行方法实现,可以参照fork
from tkinter import *
import time
def tick():
global time1
# get the current local time from the PC
time2 = time.strftime('%H:%M:%S')
# if time string has changed, update it
if time2 != time1:
time1 = time2
clock.config(text=time2)
# calls itself every 200 milliseconds
# to update the time display as needed
# could use >200 ms, but display gets jerky
clock.after(200, tick)
root = Tk()
time1 = ''
status = Label(root, text="v1.0", bd=1, relief=SUNKEN, anchor=W)
status.grid(row=0, column=0)
clock = Label(root, font=('times', 20, 'bold'), bg='green')
clock.grid(row=0, column=1)
tick()
root.mainloop()
代码是我网上抄来的,具体实现一种方法可以用并行运行方法实现,可以参照fork
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询