Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged 关于tkinter

0 votes
252 views
1 answer
    from tkinter import * root = Tk() def x(): i = 0 while i<100: i+=1 print(i) root.after(1000,x) x() 倒数第二行中的root.after(1000,x),我 ... root窗口,等待1000毫秒后,不停地从1打印到99,中间也没有1000毫秒的间隔 这是为什么?...
asked Jan 27, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
275 views
1 answer
    from tkinter import * root = Tk() def x(): i = 0 while i<100: i+=1 print(i) root.after(1000,x) x() 倒数第二行中的root.after(1000,x),我 ... root窗口,等待1000毫秒后,不停地从1打印到99,中间也没有1000毫秒的间隔 这是为什么?...
asked Jan 27, 2021 in Technique[技术] by 深蓝 (71.8m points)
To see more, click for the full list of questions or popular tags.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...