Commit 2a6ce332 by BellCodeEditor

save project

parent ec4f88b3
Showing with 10 additions and 8 deletions
...@@ -4,12 +4,13 @@ class FBL: ...@@ -4,12 +4,13 @@ class FBL:
self.hp=hp self.hp=hp
self.attack=attack self.attack=attack
self.level=level self.level=level
SB=FBL("SB",1,2,3)
def a():
SB.level=SB.level+1 def a(self):
SB.hp=SB.hp+9999999999999999999 self.level=self.level+1
SB.attack=SB.attack+0 self.hp=self.hp+9999999999999999999
print(SB.level) self.attack=self.attack+0
a() a=FBL(1,2,3,4)
a()
a.a()
print(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