上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 108 下一页
摘要: """ Peson.py 人类类 edit: ide: date: """ class Human(object): """ 人类类 """ #限制对象属性只能是SLOTS里面的变量名 对象绑定属性,不用先定义属性 #__slots__ = ('sage','sname','sfrom') sage 阅读全文
posted @ 2023-06-18 13:31 ®Geovin Du Dream Park™ 阅读(21) 评论(0) 推荐(0) 编辑
摘要: # coding=utf-8 """ ReadWriteFile.py 读写文件 date 2023-06-17 edit: Geovin Du,geovindu, 涂聚文 ide: PyCharm 2023.1 python 11 """ class DuReadWirte(object): "" 阅读全文
posted @ 2023-06-17 21:16 ®Geovin Du Dream Park™ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: sql script: IF EXISTS (SELECT * FROM sysobjects WHERE [name] = 'proc_Insert_BookKindOut') DROP PROCEDURE proc_Insert_BookKindOut GO CREATE PROCEDURE p 阅读全文
posted @ 2023-06-17 19:17 ®Geovin Du Dream Park™ 阅读(55) 评论(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-17 18:43 ®Geovin Du Dream Park™ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 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™ 阅读(7) 评论(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™ 阅读(85) 评论(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™ 阅读(15) 评论(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™ 阅读(3) 评论(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™ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: NumPySciPymatplotlibIPythonpandas tablesnumexpropenpyxlXlsxWriterxlrdfeedparserBeautiful SoupSQLAlchemyPonydatasetMongoDBPyMongoRedis serverRedisCassa 阅读全文
posted @ 2023-06-13 19:59 ®Geovin Du Dream Park™ 阅读(58) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 108 下一页