Objectivo
Desarrolla un programa Python que solicite al usuario una cantidad indeterminada de números (hasta que se ingrese 0) y muestre su suma, de la siguiente manera:
¿Número? 5
Total = 5
¿Número? 10
Total = 15
¿Número? -2
Total = 13
¿Número? 0
Terminado
Ejemplo Ejercicio Python
Mostrar Código Python
# Initialize the total sum variable
total = 0
# Use a while loop to prompt the user for numbers until 0 is entered
while True:
num = float(input("Number? "))
# Check if the entered number is 0
if num == 0:
print("Finished")
break
# Add the entered number to the total sum
total += num
# Display the current total sum
print(f"Total = {total}")
Output
Number? 5
Total = 5
Number? 10
Total = 15
Number? -2
Total = 13
Number? 0
Finished
Código de Ejemplo copiado
Comparte este ejercicios Python