Objectivo
Desarrolla un programa Python que le pida al usuario un número y muestre su tabla de multiplicación, de la siguiente manera:
Ingresa un número:
5
La tabla de multiplicación del 5 es:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
...
5 x 10 = 50
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user to enter a number
num = int(input("Please enter a number: "))
# Display the multiplication table for the entered number
print(f"\nThe multiplication table for {num} is:")
for i in range(1, 11):
print(f"{num} x {i} = {num * i}")
Output
Please enter a number:
5
The multiplication table for 5 is:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
Código de Ejemplo copiado
Comparte este ejercicios Python