Generation

generate functionMon, 20 Mar 2023

add infinity numbers and return them an array of numbers

def add(numbers): total = 0 for number in numbers: total += number return total add([1,2,3,4])

Questions about programming?Chat with your personal AI assistant