Commit 7714e904 by BellCodeEditor

save project

parent bf8eb93a
Showing with 12 additions and 14 deletions
...@@ -4,20 +4,19 @@ class MC: ...@@ -4,20 +4,19 @@ class MC:
self.name=name self.name=name
self.hp=hp self.hp=hp
self.attack=attack self.attack=attack
def upgrade(self):
self.level=self.level+1
self.hp=self.hp*2
self.attack=self.attack*2
Steve=MC("史蒂夫",50,1500000000) Steve=MC("史蒂夫",50,1500000000)
Alex=MC("艾利克斯",50,150000000) Alex=MC("艾利克斯",50,150000000)
Steve.upgrade()
Alex.upgrade()
print("史蒂夫的等级是",Steve.level)
print("史蒂夫的血量是",Steve.hp)
print("史蒂夫的攻击力是",Steve.attack) print("史蒂夫的攻击力是",Steve.attack)
print("艾力克斯的等级是",Alex.level)
print("艾力克斯的血量是",Alex.hp)
print("艾力克斯的攻击力是",Alex.attack) print("艾力克斯的攻击力是",Alex.attack)
def upgrade():
Steve.level=Steve.level+1
Steve.hp=Steve.hp*2
Steve.attack=Steve.attack*2
upgrade()
upgrade()
def a():
Alex.level=Alex.level+1
Alex.hp=Alex.hp*2
Alex.attack=Alex.attack*2
a()
a()
\ No newline at end of file
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