Posts by Noberto Maciel • 11 points
1 post
-
0
votes6
answers41177
viewsA: How to find the position of an item on a list?
It is very old the post, but the answer can be used for the next ones. To return the index of an element of a list you must use index (element). lista = ["a", "b", "c"] print(lista.index("b"))…