Python3的index()方法
Posted 无证骑士
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3的index()方法相关的知识,希望对你有一定的参考价值。
index()
函数用于从列表中找出某个值第一个匹配项的索引位置。
list1 = [‘Google‘, ‘Runoob‘, ‘Taobao‘] print("Google的索引值:",list1.index("Google")) print("Taobao的索引值:",list1.index("Taobao")) # 输出: Google的索引值: 0 Taobao的索引值: 2
以上是关于Python3的index()方法的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段