摘要: #python学习-MySQLdb模块 ##函数用法 # 生成一个 connect 对象,用于访问数据库 conn = MySQLdb.connect(host='localhost', db='test01', user='root', passwd='123456', port=3306, ch 阅读全文
posted @ 2021-02-15 22:28 Shivers0x72 阅读(91) 评论(0) 推荐(0) 编辑
摘要: #python学习-queue模块 ##about 利用Queue模块可以将所有数据按顺序存放进Queue,接着可以按顺序依次取出Queue中的数据 Queue模块:qsize()、empty()、full()、put()、get() ##用法示例 import queue q = queue.Qu 阅读全文
posted @ 2021-02-15 17:38 Shivers0x72 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #python学习-threading模块 ##主要用法 class threading.Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None) ''' def test(ag1) print(ag 阅读全文
posted @ 2021-02-15 17:01 Shivers0x72 阅读(64) 评论(0) 推荐(0) 编辑