摘要:
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... 阅读全文
摘要:
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 _... 阅读全文
摘要:
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... 阅读全文