Commit cbcc14ae by BellCodeEditor

auto save

parent ef39df1c
Showing with 8 additions and 0 deletions
class hero: #定义类名
def __init__(self): #使用__init__()方法定义类属性
self.level=1 #等级
self.hp=300 #生命值
self.attack=30000000000 #攻击值
self.defense=1500 #防御值
yase=hero() #对象实例化,类名必须带()
print(yase.attack) #查看具体的属性值
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment