question # 1\ndropdown\nyou already know about lists. what missing function will return the index of 7 in…

question # 1\ndropdown\nyou already know about lists. what missing function will return the index of 7 in the list?\n>>> mylist = 12, 5, 7, 3, 25\n>>> mylist. (7)

question # 1\ndropdown\nyou already know about lists. what missing function will return the index of 7 in the list?\n>>> mylist = 12, 5, 7, 3, 25\n>>> mylist. (7)

Answer

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