Attribute Error | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Attribute Error

Hello coders I have a bit of an issue; Im trying to get used to code using OOP but I keep getting an, "Attribute error". I can't seem to find the error on my own. So if you see what the issue is, please let me know and I would be most grateful. My code is here: class Ninjutsu: def __init__ (self, colour, element, damage): self.colour = colour self.element = element self.damage = damage def lightning(self): print("Zaapp!!") print("Paralysis effect") class Fire(Ninjutsu): def fire(self): print("Pffff") print("Burn effect") bolt = Ninjutsu("Blue", "Lightning", "10 Damage points") print(bolt.damage) bolt.lightning() Fire_ball = Ninjutsu("Orange", "Fire", "9 Damage points") print(Fire_ball.damage) Fire_ball.fire()

25th Oct 2019, 4:35 PM
Mars_96
4 Answers
+ 3
Your Ninjutsu class doesn't have the fire method in it. Fire_ball is an instance of that class so Fire_ball.fire() gives an error (as that method doesn't exist). Simply change the statement to Fire_ball = Fire("Orange", "Fire", "9 Damaga points") so now Fire_ball is an instance of the Fire class and thus has that fire() method.
25th Oct 2019, 4:42 PM
Russ
Russ - avatar
+ 1
oooohhh, thank you very much russ, that makes a lot of sense haha :)
25th Oct 2019, 4:50 PM
Mars_96
+ 1
This community is so great! haha
25th Oct 2019, 4:50 PM
Mars_96
0
Mars_96 Not a problem 👍
25th Oct 2019, 4:52 PM
Russ
Russ - avatar