上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 118 下一页
摘要: import binascii geovin=b"geovindu" adu=base64.b64encode(geovin) #加密码 print(adu) edu=base64.b64decode(adu) #解密 print(edu) s=["医疗",400,1] column=('Insur 阅读全文
posted @ 2023-06-17 17:44 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0)
摘要: import pymysql def connect(*args, **kwargs): connection = pymysql.connect(*args, **kwargs) cur = connection.cursor() return SQLHelper(connection, cur) 阅读全文
posted @ 2023-06-16 08:05 ®Geovin Du Dream Park™ 阅读(95) 评论(0) 推荐(0)
摘要: sql: create database geovindu; use geovindu; drop table BookKindList; #书目录 create table BookKindList ( BookKindID INT NOT NULL AUTO_INCREMENT, #自动增加 B 阅读全文
posted @ 2023-06-15 22:30 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0)
摘要: def typeassert(*ty_args, **ty_kwargs): """ 利用装饰器对函数参数强制性类型检查 enforcing type check on function using decorator :param ty_args: :param ty_kwargs: :retur 阅读全文
posted @ 2023-06-15 20:20 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0)
摘要: sql script: DROP TABLE InsuranceMoney GO create table InsuranceMoney ( ID INT IDENTITY(1,1) PRIMARY KEY, InsuranceName nvarchar(50), InsuranceCost flo 阅读全文
posted @ 2023-06-14 21:53 ®Geovin Du Dream Park™ 阅读(31) 评论(0) 推荐(0)
摘要: NumPySciPymatplotlibIPythonpandas tablesnumexpropenpyxlXlsxWriterxlrdfeedparserBeautiful SoupSQLAlchemyPonydatasetMongoDBPyMongoRedis serverRedisCassa 阅读全文
posted @ 2023-06-13 19:59 ®Geovin Du Dream Park™ 阅读(68) 评论(0) 推荐(0)
摘要: pip install xlrdpip install xlwtpip install xlutilspip install xlwingspip install XlsxWriterpip install openpyxlpip install pandaspip install pandasql 阅读全文
posted @ 2023-06-12 22:00 ®Geovin Du Dream Park™ 阅读(37) 评论(0) 推荐(0)
摘要: /*****************************************************************//** * \file DuSimple.h * \brief Interpreter Pattern 解释器模式 C++ 14 * 2023年6月10日 涂聚文 G 阅读全文
posted @ 2023-06-11 22:16 ®Geovin Du Dream Park™ 阅读(30) 评论(0) 推荐(0)
摘要: def timeFuncCounter(func): """ 装饰器 写一个装饰器,统计任何函数执行完所需要消耗的时间 :param func: 输入函数 :return: 返回函数名 """ def innerfunc(*args,**kwargs): stat = time.perf_count 阅读全文
posted @ 2023-06-11 15:43 ®Geovin Du Dream Park™ 阅读(14) 评论(0) 推荐(0)
摘要: a=10 def addgoled(): global a a+=1 dd=[{'name':'zhang','age':10}, {'name':'tu','age':13}] d={'name':'zhang','age':10} def adddict(): global d #for a i 阅读全文
posted @ 2023-06-11 15:14 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 118 下一页