-
多线程小模块
- def count(i):
- for k in range(1, 100+1):
- text.insert(END,'第'+str(i)+'线程count: '+str(k)+'
')
- time.sleep(0.001)
-
-
- def fun():
- for i in range(1, 5+1):
- th=threading.Thread(target=count,args=(i,))
- th.setDaemon(True)
- th.start()
- var.set('MDZZ')
-
相关阅读:
非常奇怪的VS2005无法调试的问题
自已写的“动易PowerEasy2006暴库工具”
用VBA去除Excel工作表保护密码
mapgis同arcmap之间的数据转换, 投影变换,误差校正,坐标,基础资料,教程的相关信息的汇集
HDU You Are the One (dp)
HDU4291 A Short problem
Mondriaan's Dream(poj2411)
HDU 4277 USACO ORZ
求欧拉回路的路径(usaco3.3Riding the Fences)
poj2923 (状态压缩01背包)
-
原文地址:https://www.cnblogs.com/monsteryang/p/6592382.html
Copyright © 2020-2023
润新知