Commit bf8eb93a by BellCodeEditor

save project

parent 5f59ef78
Showing with 18 additions and 5 deletions
class MC:
def __init__(self,name,hp,attack):
self.level:10
self.level=1
self.name=name
self.hp=hp
self.attack=attack
Steve=MC("史蒂夫",150,150000000000000000)
Alex=MC("艾利克斯",150,15000000000000000)
Steve=MC("史蒂夫",50,1500000000)
Alex=MC("艾利克斯",50,150000000)
print("史蒂夫的攻击力是",Steve.attack)
print("艾力克斯的攻击力是",Alex.attack)
\ No newline at end of file
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