摘要: 安装数据库需要的包 pip install redis pip install psycopg2 sqlite3内置 pip install pymongo pip install pymssql pip install PyMySQL pip install cx_Oracle 1.连接sqlit 阅读全文
posted @ 2023-02-02 09:59 星空沃土 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 1 # coding:<encoding name> : # coding: utf-8 2 import xlrd2 3 from docxtpl import DocxTemplate 4 5 6 def main(): 7 data = xlrd2.open_workbook(r"data.x 阅读全文
posted @ 2023-02-02 09:35 星空沃土 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 1、基本类型 integer,float,boolean,string bytes 2、识别码 变量、函数,模块、类。。。的命名。 3、变量赋值 = 4、容器类型 list[],tuple() str"",dict{} set,set() 5、类型转换 int,float,round,bool,st 阅读全文
posted @ 2023-02-02 09:17 星空沃土 阅读(67) 评论(0) 推荐(0) 编辑
摘要: python对sqlite数据库的操作如下: 需要注意以下三点: 对数据做更改必须得使用conn.commit()语句变更才生效。 为了使语句安全,使用这样的格式,传变量。symbol = 'RHAT' c.execute("SELECT * FROM stocks WHERE symbol = ' 阅读全文
posted @ 2020-08-20 16:24 星空沃土 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 在B站网上学习视频,看到一些关于python的网络爬虫方面的gui软件开发,实现提交请求,然后返回图片的签名,个人感他的界面设计没有像C#,winform那样方便设计。 所以我就在想能不能爬虫方面用python来实现,界面方面使用C#来做。有这个想就得立马行动。不然就只能是空想。 下面把我实现的步骤 阅读全文
posted @ 2020-08-17 11:13 星空沃土 阅读(1185) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Drawing; 3 using System.Windows.Forms; 4 5 namespace dynbtn 6 { 7 public partial class Form1 : Form 8 { 9 public Form1( 阅读全文
posted @ 2020-04-16 16:13 星空沃土 阅读(5268) 评论(0) 推荐(0) 编辑
摘要: private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Right < 0) { label1.Left = this.Width; } } 在窗体的定时器上编写上面的代码就可以看到效果了 阅读全文
posted @ 2020-04-16 15:10 星空沃土 阅读(1690) 评论(0) 推荐(0) 编辑
摘要: 1 using Microsoft.Win32; 2 using System; 3 using System.Windows.Forms; 4 5 namespace csReg 6 { 7 public partial class Form1 : Form 8 { 9 public Form1( 阅读全文
posted @ 2020-04-16 14:14 星空沃土 阅读(431) 评论(0) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { //MessageBox.Show(GetDoubleClickTime().ToString()); Type type = typeof(string); foreach (var ite 阅读全文
posted @ 2020-04-15 17:27 星空沃土 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 通过阅读C#与.net开发指南摘录一些常用的FCL(框架类库的名称空间)仅供参考。 名称空间 内容描述 System 每个应用使用的基类型 System.Data 连接数据库或数据处理 System.IO 流的输入、输出和目录和文件 System.Net 类型用于低级网络通信和通用的internet 阅读全文
posted @ 2020-04-11 15:27 星空沃土 阅读(300) 评论(0) 推荐(0) 编辑