AttributeError: ‘list‘ object has no attribute ‘apppend‘

错误之源:

>>> li=[]
>>> li.apppend('s')
Traceback (most recent call last):
  File "", line 1, in 
AttributeError: 'list' object has no attribute 'apppend'

请看清楚 正确的是 append   而不是 apppend。

上面之所以出现错误,是因为多了一个p

你可能感兴趣的:(python,list,python)