def promedio(n1, n2, n3): return (n1 + n2 + n3) / 3 prom = promedio(4.5, 3.8, 5.0) print("Promedio:", prom)
To embed this program on your website, copy the following code and paste it into your website's HTML: