06 2023 档案

摘要:https://github.com/dahlia/awesome-sqlalchemy Python Design PatternsThis project contains some of the most popular design patterns implemented in Pytho 阅读全文
posted @ 2023-06-30 21:37 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file ConsoleTextFileDemoApp.cpp c++ 14 * \brief * * * \author geovindu * \da 阅读全文
posted @ 2023-06-30 21:11 ®Geovin Du Dream Park™ 阅读(4) 评论(0) 推荐(0) 编辑
摘要:python.exe -m pip install --upgrade pip pip install pymssqlpip install pymysqlpip install pyodbcpip install DBUtilspip install xlrdpip install xlwtpip 阅读全文
posted @ 2023-06-29 23:22 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0) 编辑
摘要:SQLAlchemy-2.0.17 Oracel,SQL server, PostgreSQL,MySQL,SQLite都玩过。 python.exe -m pip install --upgrade pip pip install pymssqlpip install pymysqlpip ins 阅读全文
posted @ 2023-06-28 20:57 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0) 编辑
摘要:pip install PyQt5pip install PyQt5-tools https://www.w3schools.cn/pyqt5/pyqt5_hello_world.htmlhttps://doc.qt.io/qtforpython-5/contents.htmlhttps://zhu 阅读全文
posted @ 2023-06-27 22:39 ®Geovin Du Dream Park™ 阅读(53) 评论(0) 推荐(0) 编辑
摘要:python.exe -m pip install --upgrade pip pip install pymssqlpip install pymysql pip install mysql-connector-pythonpip install pyodbcpip install DBUtils 阅读全文
posted @ 2023-06-26 20:36 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:SQLite 3 select StudentId,StudentName,StudentNO,StudentBirthday,(julianday('now')-julianday(StudentBirthday))/365 as Age from DuStudentList; SELECT (j 阅读全文
posted @ 2023-06-25 22:10 ®Geovin Du Dream Park™ 阅读(13) 评论(0) 推荐(0) 编辑
摘要:pip install matplotlibpip install numpypip install statsmodels """ StudentUI.py 读文件类 date 2023-06-24 edit: Geovin Du,geovindu, 涂聚文 ide: PyCharm 2023.1 阅读全文
posted @ 2023-06-24 15:09 ®Geovin Du Dream Park™ 阅读(70) 评论(0) 推荐(0) 编辑
摘要:""" StudentScoreInfo.py 学生成绩类 date 2023-06-16 edit: Geovin Du,geovindu, 涂聚文 ide: PyCharm 2023.1 python 11 """ import datetime import sys import os cla 阅读全文
posted @ 2023-06-24 09:00 ®Geovin Du Dream Park™ 阅读(17) 评论(0) 推荐(0) 编辑
摘要:5A.txt: 北京(8个) 1、北京市海淀区圆明园景区(2020年) 2、北京奥林匹克公园(2012年) 3、恭王府景区(2012年) 4、明十三陵景区(2011年) 5、八达岭-慕田峪长城旅游(2007年) 6、颐和园(2007年) 7、天坛公园(2007年) 8、故宫博物院(2007年) 天津 阅读全文
posted @ 2023-06-23 16:37 ®Geovin Du Dream Park™ 阅读(31) 评论(0) 推荐(0) 编辑
摘要:pip install pymssqlpip install pymysqlpip install pyodbcpip install DBUtilspip install xlrdpip install xlwtpip install xlutilspip install xlwingspip i 阅读全文
posted @ 2023-06-23 08:59 ®Geovin Du Dream Park™ 阅读(21) 评论(0) 推荐(0) 编辑
摘要:第一种方式: """ StudentScoreInfo.py 学生成绩类 date 2023-06-16 edit: Geovin Du,geovindu, 涂聚文 ide: PyCharm 2023.1 python 11 """ import datetime import sys import 阅读全文
posted @ 2023-06-23 07:48 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0) 编辑
摘要:python.exe -m pip install --upgrade pip pip install pymssql pip install pymysqlpip install pyodbc pip install SQLAlchemy pip install xlrdpip install x 阅读全文
posted @ 2023-06-20 22:36 ®Geovin Du Dream Park™ 阅读(9) 评论(0) 推荐(0) 编辑
摘要:def selectSql(cls): """ :return: """ studentlist = [] students = [] data = cls.studentlist.selectSql() (studentlist) = data # 如C# 强制转换 ''' 也可以 sts=lis 阅读全文
posted @ 2023-06-20 21:27 ®Geovin Du Dream Park™ 阅读(5) 评论(0) 推荐(0) 编辑
摘要:# -*- coding: utf-8 -*- # pip install pygame """ DrawTool.py 画板 """ import math import pygame from pygame.locals import QUIT, KEYDOWN, K_ESCAPE, MOUSE 阅读全文
posted @ 2023-06-19 23:18 ®Geovin Du Dream Park™ 阅读(44) 评论(0) 推荐(0) 编辑
摘要:sql script: /* 学生类:姓名、年龄、学号、成绩 班级类:班级名称、学生列表显示所有学生 根据学号查找学生 添加一个学生 删除一个学生(学生对象、学号) 根据学号升序排序 根据成绩降序排序 */ --学生表 DROP TABLE StudentList GO create table S 阅读全文
posted @ 2023-06-18 23:38 ®Geovin Du Dream Park™ 阅读(31) 评论(0) 推荐(0) 编辑
摘要:""" Peson.py 人类类 edit: ide: date: """ class Human(object): """ 人类类 """ #限制对象属性只能是SLOTS里面的变量名 对象绑定属性,不用先定义属性 #__slots__ = ('sage','sname','sfrom') sage 阅读全文
posted @ 2023-06-18 13:31 ®Geovin Du Dream Park™ 阅读(24) 评论(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™ 阅读(8) 评论(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™ 阅读(64) 评论(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™ 阅读(21) 评论(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™ 阅读(10) 评论(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™ 阅读(89) 评论(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™ 阅读(16) 评论(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™ 阅读(4) 评论(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™ 阅读(15) 评论(0) 推荐(0) 编辑
摘要:NumPySciPymatplotlibIPythonpandas tablesnumexpropenpyxlXlsxWriterxlrdfeedparserBeautiful SoupSQLAlchemyPonydatasetMongoDBPyMongoRedis serverRedisCassa 阅读全文
posted @ 2023-06-13 19:59 ®Geovin Du Dream Park™ 阅读(60) 评论(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™ 阅读(27) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file DuSimple.h * \brief Interpreter Pattern 解释器模式 C++ 14 * 2023年6月10日 涂聚文 G 阅读全文
posted @ 2023-06-11 22:16 ®Geovin Du Dream Park™ 阅读(14) 评论(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™ 阅读(9) 评论(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™ 阅读(7) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file Gold.h * \brief 访问者模式 Visitor Pattern C++ 14 行为模式 * 2023年6月8日 涂聚文 Geovi 阅读全文
posted @ 2023-06-09 05:56 ®Geovin Du Dream Park™ 阅读(12) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file PayrollProcessing.h * \brief 责任链模式Chain Of Responsibility Pattern 亦称: 职 阅读全文
posted @ 2023-06-07 21:25 ®Geovin Du Dream Park™ 阅读(15) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file ActorMemento.h * \brief 备忘录模式 Memento Pattern亦称:快照、Snapshot、Memento C++ 阅读全文
posted @ 2023-06-06 21:38 ®Geovin Du Dream Park™ 阅读(6) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file ControlParent.h * \brief MediatorPattern 中介者模式 亦称: 调解人、控制器、Intermediary 阅读全文
posted @ 2023-06-04 23:47 ®Geovin Du Dream Park™ 阅读(3) 评论(0) 推荐(0) 编辑
摘要:''' drawrect.py file editor: geovindu, Geovin Du date: 2023-06-11 ''' import turtle as t def drawonerect(x,y,side): """ 画正方形 :param x: x轴 :param y: Y轴 阅读全文
posted @ 2023-06-04 14:23 ®Geovin Du Dream Park™ 阅读(23) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file Gold.h * \brief 桥接模式 Bridge Pattern C++ 14 * 2023年6月3日 涂聚文 Geovin Du Vi 阅读全文
posted @ 2023-06-03 22:53 ®Geovin Du Dream Park™ 阅读(9) 评论(0) 推荐(0) 编辑
摘要:/*****************************************************************//** * \file GoldLogToFile.h * \brief 适配器模式Adapter Pattern 亦称: 封装器模式、Wrapper、Adapter 阅读全文
posted @ 2023-06-02 22:29 ®Geovin Du Dream Park™ 阅读(8) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示