
Lv.1
举杯独醉,饮罢飞雪,茫然又一年岁
签名:淡退() py大屑一个() c++和js还有vb略有涉猎 box3 up插件创建者 自动评论噶了()
在 超解压的BGM!!搜索《赚钱赚钱再赚钱》,要是背景音乐不好听你打我!! 中回复
今日,某男子由于夜晚蹦迪,被邻居举报后,进行思想教育。
据渠道信息,该男子在被捕时,正头上脚下的大喊857。
2021-08-07T21:54:09 点赞:0
在 Python 海龟 · 温馨提醒 中回复
应该是
tuetle.mainloop()
turtle其实已经封装好了叫做
turtle.done()
由于tuetle其实使用tkinter写的(人人皆知)
tkinter的模块有个函数叫做mainloop,用来固定窗口,和窗口事件监听的
所以也可以用mainloop()
2021-08-09T17:07:06 点赞:0
在 【教程】论怎么打出狗头 中回复
https://img.t.sinags.cn/t4/appstyle/expression/ext/normal/b6/dog_thrmb.gif
2021-08-09T17:12:13 点赞:0
在 怎么快速让程序未响应? 中回复
from multiprocessing import Process, Queue
def fun(q):
num = 1
q.put('=' * num)
print("done put")
if __name__ == '__main__':
queue = Queue()
p = Process(target=fun, args=(queue,))
p.start()
p.join()
print("done")
2021-08-09T21:22:34 点赞:0