摘要: http://blog.csdn.net/jy692405180/article/details/52496599 阅读全文
posted @ 2017-11-13 16:18 月河 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Python3 中字符的类型只有两种: str: 编码过的 unicode 文本字符 bytes: 编码前的字节序列 阅读全文
posted @ 2017-11-13 16:17 月河 阅读(131) 评论(0) 推荐(0) 编辑
摘要: class people: def __init__(self,name,age): self.name=name self.age=age def__call__(self): pass p1=people('小明',21)#执行init方法 p1()#执行call方法 阅读全文
posted @ 2017-11-13 11:33 月河 阅读(105) 评论(0) 推荐(0) 编辑