标签:div 返回 bcd out dex 元素 span abc color
index() 用于返回元素对应的索引值
In [29]: a = ‘abcd‘ In [30]: a.index(‘b‘) Out[30]: 1 In [31]: a.index(‘c‘) Out[31]: 2
index()
原文地址:http://www.cnblogs.com/pzk7788/p/7865191.html