Cody Bable

Generation

generate functionFri, 19 May 2023

create a function for min and max of a list of numbers

def min_max(numbers): return min(numbers), max(numbers) min_max([1,2,3,4,5])

Want to kickstart your project?Use the new AI Studio to create your code