progredes20261/tabuada.py

3 lines
100 B
Python
Raw Permalink Normal View History

2026-04-18 00:47:22 +00:00
numero = int(input("Digite um número: "))
for i in range(11):
print(f"{numero}x{i}={numero*i}")