Your question is Python List Value Check. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
When validating values collected from an F5 BIG-IP configuration, you may need to check whether a specific value appears in a list. Write a function that returns whether the target value is present, using equality comparison.
The function must scan the list from left to right and return True as soon as the target is found. Return False if the scan completes without finding it. Duplicate values do not change the result.
Implement contains_value(values, target).
values, a list of comparable Python values, and target, one comparable Python value.True when an element of values equals target; otherwise return False.def contains_value(values, target):