Commit c9389f8e by BellCodeEditor

save project

parent c8a106ab
Showing with 11 additions and 8 deletions
class aa: class c:
def __init__(a): def __init__(a,name,hp,att,det,con):
a.hp=1 a.name=name
a.att=1 a.hp=hp
a.det=1 a.att=att
a.con=1 a.det=det
mk=aa() a.con=con
print(mk.con) mk=c("mk",100,50,100,50)
flkl=c("flkl",100,100,50,50)
print(flkl.hp)
print(mk.hp)
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