Why does this error occur?
"AttributeError: 'list' object has no attribute 'append'" with this code?
class Stack :
def __init__(self) :
self.items = []
def push(self, item) :
self.items.apend(item)
def pop(self) :
return self.items.pop()
def isEmpty(self) :
return (self.items == [])
s = Stack()
s.push(54)
print s.pop()