progredes20261/tabuada.py

3 lines
100 B
Python

numero = int(input("Digite um número: "))
for i in range(11):
print(f"{numero}x{i}={numero*i}")