Pythonリスト該当値を取り出す位置(テーブル処理)
#要件
1つのリストで、対応する値の位置を取り出します.
方法1:
#スクリプトの例
#実行スクリプト
方法2:
#スクリプトの例
#実行スクリプト
1つのリストで、対応する値の位置を取り出します.
方法1:
#スクリプトの例
[root@localhost opt]# cat list.py
#!/usr/bin/env python
#_*_ coding:utf-8 _*_
name=['!','#','*','Eric','wsyht','jack','jack','a','b','c','d',1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,2332,4,2,6,2]
first_pos = 0
for i in range(name.count(2)): #5 2
new_list = name[first_pos:]
next_pos = new_list.index(2) + 1 # 12 , +1,
print 'Find postion:', first_pos + new_list.index(2),'Next:', next_pos #12, 13
first_pos += next_pos #0+13
#実行スクリプト
[root@localhost opt]# python list.py
Find postion: 12 Next: 13
Find postion: 18 Next: 6
Find postion: 24 Next: 6
Find postion: 31 Next: 7
Find postion: 33 Next: 2
方法2:
#スクリプトの例
#!/usr/bin/env python
#conding:utf-8
a = [1,0,2,3,4,5,6,7,8,1,2,3,4,5,6,1,2,3,4,5]
pos = 0
for i in range(a.count(2)): # 2
if pos == 0:
pos = a.index(2) # , pos
else:
pos = a.index(2,pos+1) #2 , pos+1
print pos
#実行スクリプト
[root@localhost opt]# python list_count.py
12
18
24
31
33