原创
2015-12-04 00:49:23
641 阅读
原创
2015-10-05 11:55:56
768 阅读
1、append字列表末尾追加新的对象>>>lst=[1,2,3]
>>>lst.append(4)
>>>lst
[1,2,3,4]2、count用于计算某个元素在列表中出现的次数>>>['to','be','or','not','to','be','this','is','a','question'].count('to'
原创
2015-05-05 11:04:23
370 阅读
原创
2015-05-05 10:56:25
417 阅读
原创
2015-05-04 12:33:47
668 阅读
原创
2015-04-28 00:33:34
3536 阅读