Python: AttributeError - GeeksforGeeks

Python: AttributeError

Last Updated : 27 Jun, 2026

An AttributeError occurs when you try to access or use an attribute or method that does not exist for a particular object. This usually happens when a method is called on the wrong data type, an attribute name is misspelled or a non-existent object property is accessed.

Python
num = 10
num.append(5)

Output

ERROR!
Traceback (most recent call last):
File "<main.py>", line 2, in <module>
AttributeError: 'int' object has no attribute 'append'

Explanation: append() method is available for lists, not integers. Since num is an integer, Python raises an AttributeError.

Common Causes of AttributeError

The following examples demonstrate some common situations where an AttributeError can occur.

1. Using an Invalid Method: Calling a method that is not supported by an object raises an AttributeError.

Python
text = "Python"
text.append("!")

Output

ERROR!
Traceback (most recent call last):
File "<main.py>", line 2, in <module>
AttributeError: 'str' object has no attribute 'append'

Explanation: Strings do not support the append() method. It can only be used with list objects.

2. Misspelled Method Names: A spelling mistake in a method name can cause Python to look for an attribute that does not exist.

Python
msg = "hello"
print(msg.uppper())

Output

ERROR!
Traceback (most recent call last):
File "<main.py>", line 2, in <module>
AttributeError: 'str' object has no attribute 'uppper'. Did you mean: 'upper'?

Explanation: The correct method name is upper(). Since uppper() does not exist, Python raises an AttributeError.

3. Accessing a Non-Existent Class Attribute: Trying to access an attribute that was never defined in a class also results in an AttributeError.

Python
class Student:
    def __init__(self):
        self.name = "Jake"

s = Student()
print(s.age)

Output

ERROR!
Traceback (most recent call last):
File "<main.py>", line 6, in <module>
AttributeError: 'Student' object has no attribute 'age'

Explanation: The class defines only the name attribute. Since age does not exist, Python raises an AttributeError.

4. Calling a Method That Was Not Defined: Attempting to call a missing method on an object causes an AttributeError.

Python
class Employee:
    def display(self):
        print("Employee Details")

e = Employee()
e.show()

Output

ERROR!
Traceback (most recent call last):
File "<main.py>", line 6, in <module>
AttributeError: 'Employee' object has no attribute 'show'

Explanation: The class contains a method named display(), but show() was never defined.

Handling AttributeError

AttributeError can be handled using a try-except block to prevent the program from terminating unexpectedly.

Python
class Student:
    def __init__(self):
        self.name = "Aman"

s = Student()

try:
    print(s.age)
except AttributeError:
    print("Requested attribute does not exist.")

Output
Requested attribute does not exist.

Explanation: The except AttributeError block catches the exception and displays a custom message instead of showing a traceback.

Preventing AttributeError

  • Verify that a method belongs to the object before calling it.
  • Check attribute and method names for spelling mistakes.
  • Ensure class attributes are defined before accessing them.
  • Use hasattr() to check whether an attribute exists.
  • Use exception handling when working with uncertain attributes or objects.
Comment