Generation

generate functionMon, 20 Mar 2023

suma de enteros y sacar promedio

def promedio(lista): total = 0 for i in lista: total += i return total / len(lista) promedio([1,2,3,4,5,6])

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