I\'m trying to write a code that lets me find the first few multiples of a number. This is one of my attempts:
def printMultiples(n, m): for m in (n,m): prin
You can do:
def mul_table(n,i=1): print(n*i) if i !=10: mul_table(n,i+1) mul_table(7)