上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 119 下一页
摘要: 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™ 阅读(18) 评论(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™ 阅读(18) 评论(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™ 阅读(65) 评论(0) 推荐(0)
摘要: sql script: /* 学生类:姓名、年龄、学号、成绩 班级类:班级名称、学生列表显示所有学生 根据学号查找学生 添加一个学生 删除一个学生(学生对象、学号) 根据学号升序排序 根据成绩降序排序 */ --学生表 DROP TABLE StudentList GO create table S 阅读全文
posted @ 2023-06-18 23:38 ®Geovin Du Dream Park™ 阅读(51) 评论(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™ 阅读(36) 评论(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™ 阅读(24) 评论(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™ 阅读(101) 评论(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™ 阅读(43) 评论(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™ 阅读(23) 评论(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™ 阅读(98) 评论(0) 推荐(0)
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 119 下一页