摘要: class Person: country = "中国" # 类变量. 不属于对象, 对象可以访问. def __init__(self, name, num, gender, birthday): # 成员变量(实例变量) self.name = name self.num = num self. 阅读全文
posted @ 2018-09-26 15:40 SuraSun 阅读(206) 评论(0) 推荐(0) 编辑