一、对象 = 属性(静态) + 方法(动态) 二、OO(object oriented) 面向对象 的特征 1)封装 2)继承 3)多态 三、对象中的属性和方法,在编程中实际...
一、对象 = 属性(静态) + 方法(动态) 二、OO(object oriented) 面向对象 的特征 1)封装 2)继承 3)多态 三、对象中的属性和方法,在编程中实际...
1. I'd like to spend the rest of my life with you. 一辈子那么长,我都给你。 2. I'll be yours, soone...
1. os模块中关于文件目录函数使用 1) os.getcwd() 返回当前工作目录 >>> import os >>> os.getcwd() 'D:\\Pathon软件...
1. stow /stəʊ/ vt. 妥善放置 2. allude /ə'lʊd/ vi. 暗指,转弯抹角地说到;略为提及,顺便提到 3. surmise /sə'maɪz/...
1. 集合(set)集合的显著特点是:里面元素无重复 1)set的创建 >>> num2 = {1, 2, 4, 5, 6, 7, 5, 4, 3, 2, 1, 0} >>>...
1. 创建元祖 1).fromkeys() 通过一个可迭代参数和一个可选参数,将创建一个值相同字典 eg: >>> dict1 = {} >>> dict1.fromkey...
1. spicy 辛辣的 2. hard cheese today 英国俚语,表示太倒霉了今天 3. subject to 受制于,被迫接受 4. dialect 地方话,方...
1. 函数中的局部变量和全局变量 >>> count = 3 >>> def MyFun(): global count count = 10 print(count) >>...
parameter 形式参数 argument 实际参数 1. 函数 >>> def add(num1, num2): result = num1 + num2 p...
octonary ['ɑktə,nɛri] adj. [数] 八进制的;八的;由八组成的n. 八个一组;八行诗 hexadecimal [,hɛksə'dɛsɪml] ad...
1. 从列表删除元素 .insert(位置,' ') .remove() del 语句 .pop() .count(' ') .index(' ', start, end) ...
1. estate[ɪ'stet] n.房地产 2. mutual ['mjutʃuəl] adj. 共同的;相互的,彼此的 3. manual['mænjuəl] adj....
1. Python数据类型转换 2. Python的算术操作符 1)+、- 、* 、/ 、% 、 **(乘幂运算符) 、//
1. have + 时间段+ off 休假(多长时间) eg: I have4 days off. 2. lipstick 口红 3. nicknamen.绰号,昵称 eg:...
1. 分页查询 假设每页显示n条记录,当前要显示的是第m页 表名是A,主键是A_id select top n * from A where A_id not in (sel...
1. 查询的顺序 select top ... from A join B on ... join C on ... where ...... (where 是对原始数据...
1. 顺序不能变 select top 3 "E".ename, "E".sal, "S".grade, "D".dname from emp "E" join dept "...
1.select E.ename "员工姓名", D.deptno "部门名称" from emp "e" join -- join是连接 dept "d" on 1 =...
1. Money talks. 金钱万能 2. Charismais really important. 主要看气质 3. artificial intelligence 人...
1. group by 之后 select 中只能出现分组后的整体信息,不能出现组内详细信息 2.select deptno, job, AVG(sal), COUNT(*)...