摘要:
http://blog.csdn.net/jy692405180/article/details/52496599 阅读全文
摘要:
Python3 中字符的类型只有两种: str: 编码过的 unicode 文本字符 bytes: 编码前的字节序列 阅读全文
摘要:
class people: def __init__(self,name,age): self.name=name self.age=age def__call__(self): pass p1=people('小明',21)#执行init方法 p1()#执行call方法 阅读全文