码迷,mamicode.com
首页 > 编程语言 > 详细

Python基础课:列表方法count(), index()

时间:2017-07-01 09:54:02      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:元素   python   ace   line   dex   code   shell   ack   列表   

 1 >>> x = [1,2,2,2,2,2,3,3,3,3,4,4]
 2 >>> x.count(4) #元素4在列表x中出现的次数
 3 2
 4 >>> x.count(2)
 5 5
 6 >>> x.index(3) #元素3在列表x中首次出现的索引
 7 6
 8 >>> x.index(4)
 9 10
10 >>> x.index(5) #列表x中没有5,抛出异常
11 Traceback (most recent call last):
12   File "<pyshell#30>", line 1, in <module>
13     x.index(5) #列表x中没有5,抛出异常
14 ValueError: 5 is not in list
15 >>> 5 in x
16 False
17 >>> 3 in x
18 True
19 >>> 

 

Python基础课:列表方法count(), index()

标签:元素   python   ace   line   dex   code   shell   ack   列表   

原文地址:http://www.cnblogs.com/yuebei/p/7101204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!