摘要:
多态(Polymorphism): 意味着可以对不同类的对象使用同样的操作 result: 封装(Encapsulation): 对外部隐藏对象的工作细节 "百灵鸟类"是“鸟类”的子类(subclass), 鸟类是百灵鸟类的超类(superclass) 不同的子类,在使用超类的方法时, 有可以会需要 阅读全文
摘要:
result: 阅读全文
摘要:
result: 阅读全文
摘要:
result: 阅读全文
摘要:
为了解决能处理关键字参数的‘收集’操作 result: 返回的是字典而不是元组。 阅读全文
摘要:
result: 关键参数的厉害地方在于可以在函数中提供默认参数 阅读全文
摘要:
result: 记住:字符串,数字, 元组是不可变的,即无法修改的。 阅读全文
摘要:
>>> 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... 阅读全文