table.py

Created by benjamin-demassieux

Created on October 08, 2018

97 Bytes

affiche en sortie table


def table(a,b):
  for i in range(1,b+1):
        print(i, " * ", a, " = ", i * a)