generate functionTue, 23 May 2023
given a set of integers and a value for which you need to find the nearest one.
def nearest_int(int_list, target): return min(int_list, key=lambda x:abs(x-target)) nearest_int([1, 2, 3, 4, 5, 6], 4.5)
Python
Generate More