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