自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 装饰器应用之登录

# filename = "E:\\pythonStudy\\jingdong.txt"# with open(filename,'a') as f: # f.writelines("thirteen:1234\n") # print("写入成功!")# filename = "E:\\pythonStudy\\weixin.txt"# with open(filenam...

2018-08-18 18:57:06 640

原创 数据适配器DataAdapter

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W...

2018-04-23 20:52:04 663

原创 多级菜单

#@autor:THIRTEEN#@date:2018.4.22 17:36menu={ "北京":{ "朝阳":{ "国贸":{ "CICC":{}, "CCTV":{}, }, "望京":{

2018-04-22 18:46:18 390

原创 购物车

#@autor:THIRTEEN#@date:2018.4.20 14:36shopping_List=[["Book",300,0],["Pen",52,0],["Computer",1000,0]]shopping_Car=[]saving=input("请输入你要存入的钱:")if saving.isdigit(): saving=int(saving) whil...

2018-04-20 19:19:45 223

原创 元组,列表,字典

元组(tuple):        元组常用小括号表示,即:(),元素加逗号,是元组的标识。tuple = ('a','b','c','d','e','f','g')常规来说,定义了一个元组之后就无法再添加或修改元组的元素,但对元组切片可以添加会修改元组的元素。列表(list):  列表常用方括号表示,即:[];1 list1 = ['a','b','c',1,3,5]2 list2 = [1,...

2018-04-20 19:17:04 205

转载 实验三

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W...

2018-04-16 23:07:54 105

转载 事务

事务具有ACID的属性:    原子性(Atomicity):指事务如原子一样,是一个整体,不可再分,要么完成全部工作,要么什么工作也不做。    一致性(Consiitency):指事务能保证数据的一致性,即使当事务在处理的过程中发生了任何问题都能保证数据是正确的。    隔离性(Isolation):指事务和事务间是相互隔离的,不能相互访问。    持续性(Durability):指系统如果发...

2018-04-16 23:05:25 116

原创 login_for_break

_user="THIRTEEN"_passwords="aaa123"msg='''************************login**************************************Welcome to ...,%s!**************************************************************'''%_...

2018-04-13 10:13:22 166

原创 连接数据库方式

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System....

2018-04-02 21:22:02 207

原创 连接字符串创造器

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;using System.Data;namespace 连接字符串创造器{ class Pro...

2018-04-02 21:20:14 125

原创 防sql注入式攻击_sqlParamter

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Threading.Tasks;using System.W...

2018-04-02 21:20:00 241

原创 Command_数据库的增删改查

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Data.SqlClient;using System.Data;namespace Command_ExecuteNonQuery...

2018-04-02 21:19:40 1071

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除