如题的异常,原因在于Python2和Python3的差别上。
在Python2中,若令x = range(200),则x对象的属性有如下几种:
x.append, x.extend, x.insert, x.remove, x.sort, x.count, x.index, x.pop, x.reverse.
相比而言,在Python3中,x对象的属性有:
count(), step, index(), stop, start.
其中,python2(x.pop(0)) == python3(x.start);
python2(x.pop()) == python3(x.stop) - 1.
就上述例子而言,如果在Python3中使用x.pop(),则出现如下异常:
AttributeError: ‘range’ object has no attribute ‘pop’