suma = 0

print("Ingresa 5 números:")

for i in range(5):
    numero = float(input(f"Número {i+1}: "))
    suma += numero

print(f"\nLa suma total de los números es: {suma}")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: