QUESTION

Write a Python Program to check if an element is present in the input array.

Define a function called search(list, value).

For Example:

Input: [12, 23, 45, 67, 6, 90] , 12

Output: Element Found

Input: [12, 23, 45, 67, 6, 90],  25

Output: Not Found

Note: The function name should be 'search' which is case sensitive.