11 2019 档案

摘要:day27 面向对象多继承 b. 经典类和新式类 py2: 经典类 新式类,如果自己或自己的前辈只要有人继承object,那么此类就是新式类。 py3:不管怎么写都是新式类 新式类 经典类和新式类的查找成员的顺序不一样。 经典类,一条道走到黑(深度优先)。 新式类,C3算法实现(python )。( 阅读全文
posted @ 2019-11-30 21:29 walkerpython 阅读(171) 评论(0) 推荐(0)
摘要:内容回顾: 1. 成员 - 变量 - 静态字段,类变量 - 方法 - 类方法 - 静态方法 - 实例方法 - 属性 2. 对象的嵌套 3. 特殊方法 __init__ new call getitem... add enter exit iter str dict doc 4. 反射 - getat 阅读全文
posted @ 2019-11-30 11:53 walkerpython 阅读(165) 评论(0) 推荐(0)
摘要:s15day25 面向对象相关 内容回顾: 1. 昨日知识点 - 特殊成员 - 组合嵌套 - 主动调用其他类成员 - super 2. 列举特殊成员 __enter__ __exit__ __call__ __getitem__,obj['xx'] __setitem__,obj['xx'] = 1 阅读全文
posted @ 2019-11-24 17:58 walkerpython 阅读(137) 评论(0) 推荐(0)
摘要:pytest官方文档 https://www.osgeo.cn/pytest/contents.html python开源库,题目 https://time.geekbang.org/column/article/287360 极客时间 https://time.geekbang.org/colum 阅读全文
posted @ 2019-11-17 21:54 walkerpython 阅读(254) 评论(0) 推荐(0)
摘要:内容回顾: 1.mysql的基本语法 对库的操作 show databases; create database db1; 使用数据库: use db1; 对表 create table t1( id int not null unique unsigned, name char(10) not n 阅读全文
posted @ 2019-11-17 16:38 walkerpython 阅读(165) 评论(0) 推荐(0)
摘要:内容回顾: MySQL服务器 Mysql是一基于C/S架构的软件 1.如何安装Mysql 2.安装window服务 mysqld --install mysqld --remove net start mysql net stop mysql 3.破解密码 跳过授权表来开启服务器 mysqld -- 阅读全文
posted @ 2019-11-16 16:02 walkerpython 阅读(162) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/majj/category/1218953.html https://www.cnblogs.com/majj/p/9062629.html 03 内容回顾: 0.浏览器 1.标签 - 行内标签 a span i em strong b、 label 阅读全文
posted @ 2019-11-10 14:49 walkerpython 阅读(133) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/majj/category/1213642.html 内容回顾: 1.标签嵌套 行内标签和块标签 行内标签不可以嵌套块级标签,但不是绝对。 块标签嵌套块标签、行内标签。 但是p标签中的子标签只能是行内元素、表单元素、图片 2.table tr td 3 阅读全文
posted @ 2019-11-10 14:48 walkerpython 阅读(164) 评论(0) 推荐(0)
摘要:内容回顾: 1.高级选择器 - 后代选择器 **** 选择的是儿子、孙子子、重孙子 div p{} - 子代选择器 选择的是亲儿子 div>P - 组合选择器 逗号分隔 div,p,a,span{} - 交集选择器 点分割,即同时符合选择器的条件 div.active{} - 属性选择器 input 阅读全文
posted @ 2019-11-10 14:47 walkerpython 阅读(218) 评论(0) 推荐(0)
摘要:复习第一遍复习到04 https://www.cnblogs.com/majj/p/9056951.html https://www.cnblogs.com/majj/p/9062540.html day36 pycharm html中 叹号 加tab 键直接生成html 相关基本html相关基本信 阅读全文
posted @ 2019-11-03 20:30 walkerpython 阅读(151) 评论(0) 推荐(0)

点击右上角即可分享
微信分享提示