摘要: #!/usr/bin/python3class Student(object): def __init__(self): #默认有此函数,自定义时运行自定义的。实例化时首次运行该函数 print("First function to run when create a instance.") def getName(self): self.name = ... 阅读全文
posted @ 2013-03-06 23:18 helloweworld 阅读(235) 评论(0) 推荐(0) 编辑