def find(needle, haystack): for value in haystack: if value == needle: print("Found it!") return print("Didn't find it.")