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