摘要: 验证GIL的存在 from threading import Thread money = 10 def task(): global money tmp = money money = tmp - 1 t_list = [] for i in range(10): t = Thread(targe 阅读全文
posted @ 2022-08-11 20:29 无言以对啊 阅读(23) 评论(0) 推荐(0)