Which exception type normally results from evaluating "abc".append("d")?
Explanation
Attribute lookup cannot find append on a string object, so AttributeError is the relevant category. The name exists and the receiver is a valid object; the failure is specifically the absent requested attribute.