num = [10,23,25,45,6,9] findNumber = 23 res = findNumber in num if res: print("Number found.") else: print("Number isn't found")