更多列表的使用方法和API,请参考Python文档:http://docs.python.org/2/library/functions.html append:用于在列表末尾追加新对象: # append函数lst = [1,2,3]lst.append(4)# 输出:[1, 2, 3, 4]print lst 复制代码 count:用于统计某个元素在列表中出现的次数: # count函数temp_str = ['to','be','not','to','be']# 输出:2print tem…