摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # 作者:Presley 4 # 邮箱:1209989516@qq.com 5 # 时间:2018-08-05 6 # OOP学习2 7 8 class SchoolMember(object): 9 member_numbers = 0 10 def __i... 阅读全文
posted @ 2018-09-22 18:24 Presley 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # 作者:Presley 4 # 邮箱:1209989516@qq.com 5 # 时间:2018-08-05 6 # OOP学习1 7 8 class Role(object): 9 members = 0 10 ac = None 11 def _... 阅读全文
posted @ 2018-09-22 11:26 Presley 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # 作者:Presley 4 # 邮箱:1209989516@qq.com 5 # 时间:2018-08-05 6 # OOP学习1 7 8 class Role(object): 9 def __init__(self,name,role,weapon,life_v... 阅读全文
posted @ 2018-09-22 08:37 Presley 阅读(416) 评论(0) 推荐(0) 编辑