Python List Operations
1- List Search index(): Returns the index of the specified data in the list Syntax: list.index(data, start_index, end_index) count(): Counts the occurrences of the specified data in the current list len(): Number of items in the list in: Checks if the specified data is in a list not in: Checks if the data is not … Read more