摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#http://www.360doc.com/content/15/0413/19/12067640_462966543.shtml#类的专有方法(__getattr__和__setattr__、__delattr_... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#http://www.imooc.com/code/6252#类的专有方法(__getitem__和__setitem__)#__getitem__,返回给定键对应的值#__setitem__,设置给定键对应的元素... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#http://www.imooc.com/code/6252#类的专有方法(__len__)#如果一个类表现得像一个list,要获得有多少个元素,就得用len();要让len()函数正常工作,类必须提供一个特殊的方... 阅读全文
摘要:
class PhoneNumber(): def __init__(self,number): self.a=number[1:4] self.b=number[6:9] self.c=number[10:14] def __str__(self... 阅读全文
摘要:
# -*- coding: utf-8 -*-#python 27#xiaodeng#python之函数用法__str__()#http://www.cnblogs.com/hongfei/p/3858256.html#__str__()#说明:直接打印对象的实现方法#案例class Fruit: ... 阅读全文