上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 55 下一页
摘要: 多态(Polymorphism): 意味着可以对不同类的对象使用同样的操作 result: 封装(Encapsulation): 对外部隐藏对象的工作细节 "百灵鸟类"是“鸟类”的子类(subclass), 鸟类是百灵鸟类的超类(superclass) 不同的子类,在使用超类的方法时, 有可以会需要 阅读全文
posted @ 2019-06-25 10:59 嵌入式实操 阅读(179) 评论(0) 推荐(0) 编辑
摘要: result: 阅读全文
posted @ 2019-06-25 10:09 嵌入式实操 阅读(155) 评论(0) 推荐(0) 编辑
摘要: result: 阅读全文
posted @ 2019-06-25 10:01 嵌入式实操 阅读(207) 评论(0) 推荐(0) 编辑
摘要: result: 阅读全文
posted @ 2019-06-25 09:53 嵌入式实操 阅读(11797) 评论(0) 推荐(1) 编辑
摘要: 为了解决能处理关键字参数的‘收集’操作 result: 返回的是字典而不是元组。 阅读全文
posted @ 2019-06-25 09:51 嵌入式实操 阅读(198) 评论(0) 推荐(0) 编辑
摘要: result: 关键参数的厉害地方在于可以在函数中提供默认参数 阅读全文
posted @ 2019-06-25 09:24 嵌入式实操 阅读(165) 评论(0) 推荐(0) 编辑
摘要: result: 记住:字符串,数字, 元组是不可变的,即无法修改的。 阅读全文
posted @ 2019-06-25 09:19 嵌入式实操 阅读(1183) 评论(0) 推荐(0) 编辑
摘要: >>> def square(x): ... 'calculates the square of the number x.' ... return x*x ... >>> square.__doc__ 'calculates the square of the number x.' >>> help(square) Help on function square in mod... 阅读全文
posted @ 2019-06-25 08:52 嵌入式实操 阅读(754) 评论(0) 推荐(0) 编辑
摘要: pass python中空代码块是非法的,解决的方法就是在语句块中加上一个pass语句 eval >>> eval("print('hellowrold')")hellowrold 阅读全文
posted @ 2019-06-24 18:11 嵌入式实操 阅读(307) 评论(0) 推荐(0) 编辑
摘要: result: 阅读全文
posted @ 2019-06-24 18:05 嵌入式实操 阅读(251) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 55 下一页