QuestenaPractice that shows what to review next
Question 93

Which exception type normally results from evaluating "abc".append("d")?

  1. AttributeErrorCorrect answer
  2. NameError
  3. ValueError
  4. KeyError

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.

Continue with this test

Start practice
Question 93: Which exception type normally results from evaluating… · Python Fundamentals · Questena