Код: Выделить всё
3 x 1 = 3
3 x 2= 6
3 x 3 = 9
......
.....
3 x 12=42
Код: Выделить всё
enter code here
N = int(input("How many numbers would you like to multiply?:"))
num = []
q=1
p = 1
count=0
for i in range(0,N):
add = int(input(f"number {i}:"))
num.append(add)
print(num)
for j in num:
while q
Подробнее здесь: [url]https://stackoverflow.com/questions/68212003/creating-the-multiplication-table[/url]
Мобильная версия