python调用windows弹窗
import win32api
import _thread # 引入线程的模块 比较老的模块 新的 threading
def run(i):
win32api.MessageBox(0, "您的{}号大宝贝上线了".format(i), "来自小莹的问候", 2)
for i in range(5):
_thread.start_new_thread(run, (i,)) # 发起多个线程 传参的情况 参数为元组
# _thread.start_new_thread(run,()) #发起多个线程 不传参 页需要俩个参数 第二个为空元组
print('会先执行我')
# 如果主线程 不死 那么 所有的次线程 就都会正常执行
while True:
pass
运行结果: