Generation

generate functionFri, 26 May 2023

INGRESAR 5 NOTAS Y CALCULAR EL PROMEDIO DE LAS 3 NOTAS MAS ALTAS.

def promedio(n): n.sort() return sum(n[1:4])/3 promedio([7,8,9,12,3,2,1,10])

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