i1zhuxian 发表于 2016-3-18 10:34:13

python报错:AttributeError: 'list' object has no attribute 'apppend'

使用的python3.5在IDLE中
>>> l =
>>> l

>>> l.append('test')
>>> l

这个是正常的,
但到了vs 2015 中就报错了。
l =
print(l)
l.apppend('test')
print(l)


运运520 发表于 2016-3-18 14:21:35

大哥。你多打了一个p。。

i1zhuxian 发表于 2016-3-18 17:10:19

运运520 发表于 2016-3-18 14:21
大哥。你多打了一个p。。

{:6_403:}居然是这样子……
页: [1]
查看完整版本: python报错:AttributeError: 'list' object has no attribute 'apppend'