点击运行
#!/usr/bin/python aList = [123, 'xyz', 'zara', 'abc']; print "A List : ", aList.pop() print "B List : ", aList.pop(2)
运行结果 :
正在执行...