numero=int(input("Ingrese un número para ver su tabla de multiplicar: "))

print(f"Tabla de multiplicar del {numero}:")

for n in range(1, 11):
    resultado = numero * n
    print(f"{numero} x {n} = {resultado}")

Embed on website

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