Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 1 dropdown you already know about lists. what missing functi…

Question

question # 1
dropdown
you already know about lists. what missing function will return the index of 7 in the list?

>> mylist = 12, 5, 7, 3, 25
>> mylist. (7)

Explanation:

Brief Explanations

In Python, the index() method of a list is used to find the index of a given element. So to find the index of 7 in the list myList, we use the index function.

Answer:

index