📌  相关文章
📜  indice d'un element dans une liste python 代码示例

📅  最后修改于: 2022-03-11 14:45:21.641000             🧑  作者: Mango

代码示例1
week = ['monday','tuesday','wednesday']

week.index('tuesday')
>>> 1

"""Warning => error if the element isn't in the list"""