1See if their any spell mistake or,
2Checkout that is there any function defined or not which you have used for
3your object in that object class in which this error showing
4
5class Human():
6 def hands():
7 pass
8 def eyes():
9 pass
10
11h1 = Human()
12h1.wings()
13#it will give error because you have not any attributes like wings. Here only two
14#attributes hands and eyes.
15
16Reason : object not finding attribute named like wings
17