标签:
要求如下图所示:
1 #!/usr/bin/python 2 # -*- coding=UTF-8 -*- 3 4 list=[‘10‘,‘11‘,‘xx‘,‘13‘,‘14‘,‘xx‘,‘16‘,‘17‘,‘xx‘,‘19‘] 5 print ‘\n 原始数据为:‘,list,‘\n‘ 6 list_count=list.count(‘xx‘) 7 y=0 8 for i in range(list_count): 9 list_tmp=list[y:] 10 y+=list_tmp.index(‘xx‘)+1 11 print ‘\t第‘,i+1,‘个 xx 位置是:‘,y,‘\n‘
标签:
原文地址:http://www.cnblogs.com/www1707/p/5827699.html