2021年12月17日

摘要: 一、创建canvas 1 <body> 2 <!-- 创建一个canvas画布 --> 3 <canvas id = "can" width = "800" height = "600">Hello Canvas</canvas> 4 </body> 注意: 1.默认情况下创建的canvas在浏览器 阅读全文
posted @ 2021-12-17 23:48 _Mr_King 阅读(91) 评论(0) 推荐(0) 编辑
 
摘要: 03-多线程共享全局变量 import threading import time num = 100 def test1(): global num num += 1 print("test1 >%d" %num) def test2(): print("test2 >%d" %num) def 阅读全文
posted @ 2021-12-17 23:13 _Mr_King 阅读(238) 评论(0) 推荐(0) 编辑